summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-05-25 22:43:58 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-05-25 22:43:58 (GMT)
commit387729e183365a366c48fce7a9abfcaf4ec6ff4e (patch)
treef04fdaba2e72148ae51f2cb9778f64d3bea4f7e8 /Misc
parent410d77f230078900371d67eaec9ce190a67828ee (diff)
downloadcpython-387729e183365a366c48fce7a9abfcaf4ec6ff4e.zip
cpython-387729e183365a366c48fce7a9abfcaf4ec6ff4e.tar.gz
cpython-387729e183365a366c48fce7a9abfcaf4ec6ff4e.tar.bz2
Issue #23840: tokenize.open() now closes the temporary binary file on error to
fix a resource warning.
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 74c9114..5d93c29 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -59,6 +59,9 @@ Core and Builtins
Library
-------
+- Issue #23840: tokenize.open() now closes the temporary binary file on error
+ to fix a resource warning.
+
- Issue #24257: Fixed segmentation fault in sqlite3.Row constructor with faked
cursor type.