summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-01-17 21:06:43 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-01-17 21:06:43 (GMT)
commite4bc7f69c28b7edfbc9ccdf7be6b5249b38f6cbd (patch)
treef1354063a5075a58f507615afaa2c59ae4356b01 /Misc
parent0c3f8a4800a84f1887db7fcac6b65c1f8cedf43c (diff)
downloadcpython-e4bc7f69c28b7edfbc9ccdf7be6b5249b38f6cbd.zip
cpython-e4bc7f69c28b7edfbc9ccdf7be6b5249b38f6cbd.tar.gz
cpython-e4bc7f69c28b7edfbc9ccdf7be6b5249b38f6cbd.tar.bz2
Issue #4838: When a module is deallocated, free the memory backing the optional module state data.
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 69c42d2..fee788f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
+- Issue #4838: When a module is deallocated, free the memory backing the
+ optional module state data.
+
- Issue #4910: Rename nb_long slot to nb_reserved, and change its
type to (void *).