]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merge with 3.2: issue #14433
authorMartin v. Löwis <martin@v.loewis.de>
Mon, 30 Apr 2012 04:20:37 +0000 (06:20 +0200)
committerMartin v. Löwis <martin@v.loewis.de>
Mon, 30 Apr 2012 04:20:37 +0000 (06:20 +0200)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 1f97d7bc7ea7ef490512752952499dee876472cd,3b896d151c56e2253e6ce739971cea5643669188..22248ac962421801d4fdb57c5910667fb475a567
+++ b/Misc/NEWS
@@@ -10,22 -10,8 +10,25 @@@ What's New in Python 3.3.0 Alpha 3
  Core and Builtins
  -----------------
  
+ - Issue #14433: Prevent msvcrt crash in interactive prompt when stdin
+   is closed.
++  
 +- Issue #14521: Make result of float('nan') and float('-nan') more
 +  consistent across platforms.
 +
 +- Issue #14646: __import__() sets __loader__ if the loader did not.
 +
 +- Issue #14605: No longer have implicit entries in sys.meta_path. If
 +  sys.meta_path is found to be empty, raise ImportWarning.
 +
 +- Issue #14605: No longer have implicit entries in sys.path_hooks. If
 +  sys.path_hooks is found to be empty, a warning will be raised. None is now
 +  inserted into sys.path_importer_cache if no finder was discovered. This also
 +  means imp.NullImporter is no longer implicitly used.
 +
 +- Issue #13903: Implement PEP 412. Individual dictionary instances can now share
 +  their keys with other dictionaries. Classes take advantage of this to share
 +  their instance dictionary keys for improved memory and performance.
  
  - Issue #11603 (again): Setting __repr__ to __str__ now raises a RuntimeError
    when repr() or str() is called on such an object.