summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-12 09:59:03 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-12 09:59:03 (GMT)
commitfedcf9474e73a8cb209a61f513f46fb062f2cd11 (patch)
tree8b5cfe5db62251925f320e1be9226e80bbe564d0 /Misc
parent76e6cc15b26e58685084497c869decd2a5275b21 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 03aac95..e925103 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).