summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-07-15 19:02:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-07-15 19:02:09 (GMT)
commit874d65afaef54993eb5779c31611f5f3baa995e2 (patch)
treee18a6a7fa76053aa6810f805ae6f5d0ed8cca544 /Misc
parent8f629059db0b39caedd2d7ddde8a8a53e1bdea54 (diff)
parent8391cf4e1d73683795e51ac5ce8ee9e61eea389d (diff)
downloadcpython-874d65afaef54993eb5779c31611f5f3baa995e2.zip
cpython-874d65afaef54993eb5779c31611f5f3baa995e2.tar.gz
cpython-874d65afaef54993eb5779c31611f5f3baa995e2.tar.bz2
Issue #11321: Fix a crash with multiple imports of the _pickle module when
embedding Python. Patch by Andreas Stührk.
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 bfdc3a3..28f8d0a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -225,6 +225,9 @@ Core and Builtins
Library
-------
+- Issue #11321: Fix a crash with multiple imports of the _pickle module when
+ embedding Python. Patch by Andreas Stührk.
+
- Issue #6755: Add get_wch() method to curses.window class. Patch by Iñigo
Serna.