summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-12-07 03:47:37 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-12-07 03:47:37 (GMT)
commit9b4e27e8c626087759b12bb6fede30742c683e6a (patch)
treeefb7cf74c8ff1deded9202ab37065cedbd13de5c
parent0eb7f86320c13648f41e6a39b47b01d774ea117f (diff)
downloadcpython-9b4e27e8c626087759b12bb6fede30742c683e6a.zip
cpython-9b4e27e8c626087759b12bb6fede30742c683e6a.tar.gz
cpython-9b4e27e8c626087759b12bb6fede30742c683e6a.tar.bz2
add news note
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 05d1f12..8a8a7f1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.