summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-07-29 23:27:44 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-07-29 23:27:44 (GMT)
commit18d7d7a2176e169942d5764516eee6f952610884 (patch)
tree48b4881fba56ad3052be783fd5c4cefcb503ef3c /Misc/NEWS
parentd83be998fcff518af95757913cd4bf071c14fbf4 (diff)
downloadcpython-18d7d7a2176e169942d5764516eee6f952610884.zip
cpython-18d7d7a2176e169942d5764516eee6f952610884.tar.gz
cpython-18d7d7a2176e169942d5764516eee6f952610884.tar.bz2
also make NotImplementedType callable
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d0f203a..cdbb09b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,8 +10,8 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
-- Make type(None) and type(Ellipsis) callable. They return the respective
- singleton instances.
+- Make type(None), type(Ellipsis), and type(NotImplemented) callable. They
+ return the respective singleton instances.
- Forbid summing bytes in sum().