diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-27 18:56:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 18:56:27 (GMT) |
commit | 43b081bfc49173405576b8eba09a6ca86aac641b (patch) | |
tree | 9767156070adabf8b71a9d1bcdc324525fa8ec34 /Lib/test/test_syntax.py | |
parent | 054d18e883c23d7bca71714c0573c7f32f3a760b (diff) | |
download | cpython-43b081bfc49173405576b8eba09a6ca86aac641b.zip cpython-43b081bfc49173405576b8eba09a6ca86aac641b.tar.gz cpython-43b081bfc49173405576b8eba09a6ca86aac641b.tar.bz2 |
[3.11] gh-112388: Fix an error that was causing the parser to try to overwrite tokenizer errors (GH-112410) (#112467)
gh-112388: Fix an error that was causing the parser to try to overwrite tokenizer errors (GH-112410)
(cherry picked from commit 2c8b19174274c183eb652932871f60570123fe99)
Signed-off-by: Pablo Galindo <pablogsal@gmail.com>
Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
Diffstat (limited to 'Lib/test/test_syntax.py')
-rw-r--r-- | Lib/test/test_syntax.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py index 0704908..bbd22ec 100644 --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -2152,6 +2152,7 @@ func( def test_invisible_characters(self): self._check_error('print\x17("Hello")', "invalid non-printable character") + self._check_error(b"with(0,,):\n\x01", "invalid non-printable character") def test_match_call_does_not_raise_syntax_error(self): code = """ |