| commit | 18d7d7a2176e169942d5764516eee6f952610884 | [log] [tgz] |
|---|---|---|
| author | Benjamin Peterson <benjamin@python.org> | Fri Jul 29 18:27:44 2011 -0500 |
| committer | Benjamin Peterson <benjamin@python.org> | Fri Jul 29 18:27:44 2011 -0500 |
| tree | 48b4881fba56ad3052be783fd5c4cefcb503ef3c | |
| parent | d83be998fcff518af95757913cd4bf071c14fbf4 [diff] [blame] |
also make NotImplementedType callable
diff --git a/Misc/NEWS b/Misc/NEWS index d0f203a..cdbb09b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,8 +10,8 @@ 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().