summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2013-07-15 15:05:22 (GMT)
committerRichard Oudkerk <shibturn@gmail.com>2013-07-15 15:05:22 (GMT)
commit9ad51ec81b4fd9e753f92b5d0c840e18c0762c40 (patch)
tree8b2689b64c3f0cf348c2337f9ee24fe071b17343 /Misc
parent2670b9acb6daa7fe04f3c1e93beb9ad104f879e5 (diff)
downloadcpython-9ad51ec81b4fd9e753f92b5d0c840e18c0762c40.zip
cpython-9ad51ec81b4fd9e753f92b5d0c840e18c0762c40.tar.gz
cpython-9ad51ec81b4fd9e753f92b5d0c840e18c0762c40.tar.bz2
Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6fb0994..56ebe91 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.3.3 release candidate 1?
Core and Builtins
-----------------
+- Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().
+
- Issue #17872: Fix a segfault in marshal.load() when input stream returns
more bytes than requested.