summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-07-08 10:43:32 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-07-08 10:43:32 (GMT)
commit507507473e7a83e3380885965e6fd341d2961629 (patch)
treef630b5b0c542f0b366ae1026526d56bc639403a3 /Misc
parentbc07a5c9136c316383550ef38299792ab07eb167 (diff)
downloadcpython-507507473e7a83e3380885965e6fd341d2961629.zip
cpython-507507473e7a83e3380885965e6fd341d2961629.tar.gz
cpython-507507473e7a83e3380885965e6fd341d2961629.tar.bz2
Issue #15291: Fix a memory leak where AST nodes where not properly deallocated.
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 71fead5..05139f2 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 #15291: Fix a memory leak where AST nodes where not properly
+ deallocated.
+
- Issue #15110: Fix the tracebacks generated by "import xxx" to not show
the importlib stack frames.