summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRoss Lagerwall <rosslagerwall@gmail.com>2012-04-07 05:09:57 (GMT)
committerRoss Lagerwall <rosslagerwall@gmail.com>2012-04-07 05:09:57 (GMT)
commit0f9eec19ee1652a61d4b2e860e599c617d88b707 (patch)
treed6c3b4dd4e5831d0f620d2a96f8f3c324781f7fc /Misc/NEWS
parentc1b34a36f81d6fad6474e51f569f82c39e89d1c0 (diff)
downloadcpython-0f9eec19ee1652a61d4b2e860e599c617d88b707.zip
cpython-0f9eec19ee1652a61d4b2e860e599c617d88b707.tar.gz
cpython-0f9eec19ee1652a61d4b2e860e599c617d88b707.tar.bz2
Don't Py_DECREF NULL variable in io.IncrementalNewlineDecoder.
Found with Clang's Static Analyzer.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b4a0091..29bf33a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,8 @@ Core and Builtins
Library
-------
+- Don't Py_DECREF NULL variable in io.IncrementalNewlineDecoder.
+
- Issue #8515: Set __file__ when run file in IDLE.
Initial patch by Bruce Frederiksen.