summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2003-07-21 17:17:10 (GMT)
committerFred Drake <fdrake@acm.org>2003-07-21 17:17:10 (GMT)
commit01a4312a774fc8091e369f040fb081ced5faa6b5 (patch)
tree7ee16cfd6ac1ac6a255e2ea184b10d63a6d25e25 /Misc
parent7b6caffd70e83b90c50ab006e9b32ae3406d5aa3 (diff)
downloadcpython-01a4312a774fc8091e369f040fb081ced5faa6b5.zip
cpython-01a4312a774fc8091e369f040fb081ced5faa6b5.tar.gz
cpython-01a4312a774fc8091e369f040fb081ced5faa6b5.tar.bz2
Added note about the pyexpat memory leak fix.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ae3c4ef..ce7aba2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,11 @@ Extension modules
fatal internal refcount confusion when the module got initialized more
than once. This has been fixed.
+- Fixed memory leak in pyexpat; using the parser's ParseFile() method
+ with open files that aren't instances of the standard file type
+ caused an instance of the bound .read() method to be leaked on every
+ call.
+
Library
-------