diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-05-25 22:46:44 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-05-25 22:46:44 (GMT) |
commit | 24d262af0b16f76415baa6187c8892de1682c8a6 (patch) | |
tree | a13a4f056c5c47989c637f1131a26fe473757126 /Lib/test/test_tokenize.py | |
parent | e6efbdc94760ba0ca410d037b55ac32020de5cb2 (diff) | |
parent | 387729e183365a366c48fce7a9abfcaf4ec6ff4e (diff) | |
download | cpython-24d262af0b16f76415baa6187c8892de1682c8a6.zip cpython-24d262af0b16f76415baa6187c8892de1682c8a6.tar.gz cpython-24d262af0b16f76415baa6187c8892de1682c8a6.tar.bz2 |
(Merge 3.5) Issue #23840: tokenize.open() now closes the temporary binary file
on error to fix a resource warning.
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r-- | Lib/test/test_tokenize.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 43fadaf..b4e114c 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -834,7 +834,7 @@ from tokenize import (tokenize, _tokenize, untokenize, NUMBER, NAME, OP, STRING, ENDMARKER, ENCODING, tok_name, detect_encoding, open as tokenize_open, Untokenizer) from io import BytesIO -from unittest import TestCase +from unittest import TestCase, mock import os, sys, glob import token @@ -1246,6 +1246,14 @@ class TestDetectEncoding(TestCase): ins = Bunk(lines, path) detect_encoding(ins.readline) + def test_open_error(self): + # Issue #23840: open() must close the binary file on error + m = BytesIO(b'#coding:xxx') + with mock.patch('tokenize._builtin_open', return_value=m): + self.assertRaises(SyntaxError, tokenize_open, 'foobar') + self.assertTrue(m.closed) + + class TestTokenize(TestCase): |