summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-05-08 02:38:44 (GMT)
committerGitHub <noreply@github.com>2020-05-08 02:38:44 (GMT)
commitdb9163ceef31ba00ccb23226917f9c8e9142a0b8 (patch)
treedb8ef3bf719774bf6d1f0aab96f1cf65403a77b7 /Lib/test
parentb7a78ca74ab539943ab11b5c4c9cfab7f5b7ff5a (diff)
downloadcpython-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.py9
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)'