diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-12 09:59:03 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-11-12 09:59:03 (GMT) |
commit | fedcf9474e73a8cb209a61f513f46fb062f2cd11 (patch) | |
tree | 8b5cfe5db62251925f320e1be9226e80bbe564d0 /Misc | |
parent | 76e6cc15b26e58685084497c869decd2a5275b21 (diff) | |
download | cpython-fedcf9474e73a8cb209a61f513f46fb062f2cd11.zip cpython-fedcf9474e73a8cb209a61f513f46fb062f2cd11.tar.gz cpython-fedcf9474e73a8cb209a61f513f46fb062f2cd11.tar.bz2 |
Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now
rejects builtin types with not defined __new__.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 2.7.11? Core and Builtins ----------------- +- Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now + rejects builtin types with not defined __new__. + - Issue #7267: format(int, 'c') now raises OverflowError when the argument is not in range(0, 256). |