]> granicus.if.org Git - python/commitdiff
Fix typo.
authorEric Snow <ericsnowcurrently@gmail.com>
Thu, 3 Oct 2013 20:39:39 +0000 (14:39 -0600)
committerEric Snow <ericsnowcurrently@gmail.com>
Thu, 3 Oct 2013 20:39:39 +0000 (14:39 -0600)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 05752f1bbd97f587f40fdcfbcc237bce01381bb2,896b2504ab2ea0d0ab79b4f6a9a5b08308e07a04..72ebe4ddca6571bc8006c7e8744fd912554354c9
+++ 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 #19151: Fix docstring and use of _get_suppported_file_loaders() to
 +- 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_supported_file_loaders() to
    reflect 2-tuples.
  
  - Issue #19152: Add ExtensionFileLoader.get_filename().