summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-12-30 18:43:29 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-12-30 18:43:29 (GMT)
commitb8e54dd806e75f3591d8b7f07676a5738dad019d (patch)
treea7ba67021a3c201da7b5d0beffae25e16a479a79 /Misc
parent2e6c8296817a8476cdb4c3c6ce6d79304379a4d7 (diff)
downloadcpython-b8e54dd806e75f3591d8b7f07676a5738dad019d.zip
cpython-b8e54dd806e75f3591d8b7f07676a5738dad019d.tar.gz
cpython-b8e54dd806e75f3591d8b7f07676a5738dad019d.tar.bz2
Issue #22995: Instances of extension types with a state that aren't
subclasses of list or dict and haven't implemented any pickle-related methods (__reduce__, __reduce_ex__, __getnewargs__, __getnewargs_ex__, or __getstate__), can no longer be pickled. Including memoryview.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 48f5ddf..4f3dd83 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ What's New in Python 2.7.12?
Core and Builtins
-----------------
+- Issue #22995: Instances of extension types with a state that aren't
+ subclasses of list or dict and haven't implemented any pickle-related
+ methods (__reduce__, __reduce_ex__, __getnewargs__, __getnewargs_ex__,
+ or __getstate__), can no longer be pickled. Including memoryview.
+
- Issue #20440: Massive replacing unsafe attribute setting code with special
macro Py_SETREF.