diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-05-25 22:43:58 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-05-25 22:43:58 (GMT) |
commit | 387729e183365a366c48fce7a9abfcaf4ec6ff4e (patch) | |
tree | f04fdaba2e72148ae51f2cb9778f64d3bea4f7e8 /Misc | |
parent | 410d77f230078900371d67eaec9ce190a67828ee (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |