summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2012-07-28 16:45:28 (GMT)
committerRichard Oudkerk <shibturn@gmail.com>2012-07-28 16:45:28 (GMT)
commit5562d9dc5dd9f9a7710a1530a114c215516d4700 (patch)
tree506ef5c564f175f3760a1aee6b37490d1a67b6d5 /Misc
parente4c0799d9c5359b9c5115adf212d452137683c57 (diff)
downloadcpython-5562d9dc5dd9f9a7710a1530a114c215516d4700.zip
cpython-5562d9dc5dd9f9a7710a1530a114c215516d4700.tar.gz
cpython-5562d9dc5dd9f9a7710a1530a114c215516d4700.tar.bz2
Issue #1692335: Move initial args assignment to BaseException.__new__
to help pickling of naive subclasses.
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 cabea97..5201d49 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 2?
Core and Builtins
-----------------
+- Issue #1692335: Move initial args assignment to
+ BaseException.__new__ to help pickling of naive subclasses.
+
- Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays.
- Issue #15456: Fix code __sizeof__ after #12399 change.