summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-02-27 13:57:09 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-02-27 13:57:09 (GMT)
commit1cb0cb2fcdc83a6caa871104a622d1217ca034a3 (patch)
tree30adf3f3b7af0f167b4fa7d618b0fcdddf6e605b /Misc
parent5f794098898b49650b2ef6a0c4f48aa0d03b0298 (diff)
downloadcpython-1cb0cb2fcdc83a6caa871104a622d1217ca034a3.zip
cpython-1cb0cb2fcdc83a6caa871104a622d1217ca034a3.tar.gz
cpython-1cb0cb2fcdc83a6caa871104a622d1217ca034a3.tar.bz2
#17296: backport fix for issue 1692335, naive exception pickling.
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 3cd2a81..3313588 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
Core and Builtins
-----------------
+- Issue #1692335: Move initial args assignment to
+ BaseException.__new__ to help pickling of naive subclasses.
+
- Issue #17275: Corrected class name in init error messages of the C version of
BufferedWriter and BufferedRandom.