]> granicus.if.org Git - python/commitdiff
merge 3.2 (#14699)
authorBenjamin Peterson <benjamin@python.org>
Tue, 1 May 2012 13:51:46 +0000 (09:51 -0400)
committerBenjamin Peterson <benjamin@python.org>
Tue, 1 May 2012 13:51:46 +0000 (09:51 -0400)
1  2 
Lib/test/test_descr.py
Misc/NEWS
Objects/descrobject.c

Simple merge
diff --cc Misc/NEWS
index e788404095017aea3aa0c9987ecfeedc5f459987,c24caacd38ad599531d186a970aef8b8dc35e937..6251da6416d694affcdff1b27255b30d8127c676
+++ b/Misc/NEWS
@@@ -10,25 -10,10 +10,27 @@@ What's New in Python 3.3.0 Alpha 3
  Core and Builtins
  -----------------
  
+ - Issue #14699: Fix calling the classmethod descriptor directly.
  - 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.
Simple merge