diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-07-29 23:27:44 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-07-29 23:27:44 (GMT) |
commit | 18d7d7a2176e169942d5764516eee6f952610884 (patch) | |
tree | 48b4881fba56ad3052be783fd5c4cefcb503ef3c /Misc/NEWS | |
parent | d83be998fcff518af95757913cd4bf071c14fbf4 (diff) | |
download | cpython-18d7d7a2176e169942d5764516eee6f952610884.zip cpython-18d7d7a2176e169942d5764516eee6f952610884.tar.gz cpython-18d7d7a2176e169942d5764516eee6f952610884.tar.bz2 |
also make NotImplementedType callable
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(). |