diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-05-08 02:38:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 02:38:44 (GMT) |
commit | db9163ceef31ba00ccb23226917f9c8e9142a0b8 (patch) | |
tree | db8ef3bf719774bf6d1f0aab96f1cf65403a77b7 /Lib/test | |
parent | b7a78ca74ab539943ab11b5c4c9cfab7f5b7ff5a (diff) | |
download | cpython-db9163ceef31ba00ccb23226917f9c8e9142a0b8.zip cpython-db9163ceef31ba00ccb23226917f9c8e9142a0b8.tar.gz cpython-db9163ceef31ba00ccb23226917f9c8e9142a0b8.tar.bz2 |
bpo-40555: Check for p->error_indicator in loop rules after the main loop is done (GH-19986)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_eof.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_eof.py b/Lib/test/test_eof.py index 9ef8eb1..bebad31 100644 --- a/Lib/test/test_eof.py +++ b/Lib/test/test_eof.py @@ -26,6 +26,15 @@ class EOFTestCase(unittest.TestCase): else: raise support.TestFailed + def test_eof_with_line_continuation(self): + expect = "unexpected EOF while parsing (<string>, line 1)" + try: + compile('"\\xhh" \\', '<string>', 'exec', dont_inherit=True) + except SyntaxError as msg: + self.assertEqual(str(msg), expect) + else: + raise support.TestFailed + def test_line_continuation_EOF(self): """A continuation at the end of input must be an error; bpo2180.""" expect = 'unexpected EOF while parsing (<string>, line 1)' |