diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-04-21 16:05:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-04-21 16:05:19 (GMT) |
commit | d73aca769f1f6eebb46faa9161cbebe806db3659 (patch) | |
tree | d257c03a998c63a1a89b9e36bb820c43b1beb0db /Lib/test/test_compile.py | |
parent | 6de708fd46207f6af67d4c0e8902f0d56ea4495c (diff) | |
download | cpython-d73aca769f1f6eebb46faa9161cbebe806db3659.zip cpython-d73aca769f1f6eebb46faa9161cbebe806db3659.tar.gz cpython-d73aca769f1f6eebb46faa9161cbebe806db3659.tar.bz2 |
do not call into python api if an exception is set (#24022)
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r-- | Lib/test/test_compile.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index 6116676..cff3c9e 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -1,9 +1,11 @@ import math +import os import unittest import sys import _ast +import tempfile import types -from test import support +from test import support, script_helper class TestSpecifics(unittest.TestCase): @@ -492,6 +494,16 @@ if 1: self.assertInvalidSingle('f()\nxy # blah\nblah()') self.assertInvalidSingle('x = 5 # comment\nx = 6\n') + def test_particularly_evil_undecodable(self): + # Issue 24022 + src = b'0000\x00\n00000000000\n\x00\n\x9e\n' + with tempfile.TemporaryDirectory() as tmpd: + fn = os.path.join(tmpd, "bad.py") + with open(fn, "wb") as fp: + fp.write(src) + res = script_helper.run_python_until_end(fn)[0] + self.assertIn(b"Non-UTF-8", res.err) + @support.cpython_only def test_compiler_recursion_limit(self): # Expected limit is sys.getrecursionlimit() * the scaling factor |