diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-12-07 03:47:37 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-12-07 03:47:37 (GMT) |
commit | 9b4e27e8c626087759b12bb6fede30742c683e6a (patch) | |
tree | efb7cf74c8ff1deded9202ab37065cedbd13de5c | |
parent | 0eb7f86320c13648f41e6a39b47b01d774ea117f (diff) | |
download | cpython-9b4e27e8c626087759b12bb6fede30742c683e6a.zip cpython-9b4e27e8c626087759b12bb6fede30742c683e6a.tar.gz cpython-9b4e27e8c626087759b12bb6fede30742c683e6a.tar.bz2 |
add news note
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2 Beta 1? Core and Builtins ----------------- +- Issue #10630: Return dict views from the dict proxy keys()/values()/items() + methods. + - Issue #10596: Fix float.__mod__ to have the same behaviour as float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be 0.0, not -0.0. |