mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
bpo-40585: Normalize errors messages in codeop when comparing them (GH-20030)
With the new parser, the error message contains always the trailing newlines, causing the comparison of the repr of the error messages in codeop to fail. This commit makes the new parser mirror the old parser's behaviour regarding trailing newlines.
This commit is contained in:
parent
2cc9b8486d
commit
5b956ca42d
3 changed files with 17 additions and 0 deletions
|
@ -288,6 +288,15 @@ class CodeopTests(unittest.TestCase):
|
|||
|
||||
ai("[i for i in range(10)] = (1, 2, 3)")
|
||||
|
||||
def test_invalid_exec(self):
|
||||
ai = self.assertInvalid
|
||||
ai("raise = 4", symbol="exec")
|
||||
ai('def a-b', symbol='exec')
|
||||
ai('await?', symbol='exec')
|
||||
ai('=!=', symbol='exec')
|
||||
ai('a await raise b', symbol='exec')
|
||||
ai('a await raise b?+1', symbol='exec')
|
||||
|
||||
def test_filename(self):
|
||||
self.assertEqual(compile_command("a = 1\n", "abc").co_filename,
|
||||
compile("a = 1\n", "abc", 'single').co_filename)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue