summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-08-10 22:30:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-08-10 22:30:09 (GMT)
commit40322e6ad5f705e294ded37fa4a682f065ec80a2 (patch)
treec5062765b70271c1f449ed65758447276a901347 /Misc/NEWS
parent584e815114b3e1862c510df6a2ccc9d9957eedc0 (diff)
downloadcpython-40322e6ad5f705e294ded37fa4a682f065ec80a2.zip
cpython-40322e6ad5f705e294ded37fa4a682f065ec80a2.tar.gz
cpython-40322e6ad5f705e294ded37fa4a682f065ec80a2.tar.bz2
Issue #10241: Clear extension module dict copies at interpreter shutdown.
Patch by Neil Schemenauer, minimally modified. (re-apply after fix for tkinter-related crash)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1bbb17e..d847662 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -54,6 +54,9 @@ Core and Builtins
- Issue #17899: Fix rare file descriptor leak in os.listdir().
+- Issue #10241: Clear extension module dict copies at interpreter shutdown.
+ Patch by Neil Schemenauer, minimally modified.
+
- Issue #9035: ismount now recognises volumes mounted below a drive root
on Windows. Original patch by Atsuo Ishimoto.