From: Eric Snow Date: Thu, 3 Oct 2013 20:39:39 +0000 (-0600) Subject: Fix typo. X-Git-Tag: v3.4.0a4~280 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6b34923176f370f16f437465f14c73f31afab69;p=python Fix typo. --- b6b34923176f370f16f437465f14c73f31afab69 diff --cc Misc/NEWS index 05752f1bbd,896b2504ab..72ebe4ddca --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -339,26 -201,9 +339,26 @@@ Librar is due to something else than /dev/urandom not existing (for example, exhausting the file descriptor limit). +- Issue #18673: Add O_TMPFILE to os module. O_TMPFILE requires Linux kernel + 3.11 or newer. It's only defined on system with 3.11 uapi headers, too. + +- Issue #18532: Change the builtin hash algorithms' names to lower case names + as promised by hashlib's documentation. + - Issue #18405: Improve the entropy of crypt.mksalt(). +- Issue #12015: The tempfile module now uses a suffix of 8 random characters + instead of 6, to reduce the risk of filename collision. The entropy was + reduced when uppercase letters were removed from the charset used to generate + random characters. + +- Issue #18585: Add :func:`textwrap.shorten` to collapse and truncate a + piece of text to a given length. + +- Issue #18598: Tweak exception message for importlib.import_module() to + include the module name when a key argument is missing. + - - Issue #19151: Fix docstring and use of _get_suppported_file_loaders() to + - Issue #19151: Fix docstring and use of _get_supported_file_loaders() to reflect 2-tuples. - Issue #19152: Add ExtensionFileLoader.get_filename().