diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-29 11:04:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-29 11:04:45 (GMT) |
commit | 40a024c9835cddd85f14bab4b1e8f6545a621208 (patch) | |
tree | 68466bee4878bccd99a23d83d5bacf436142b6a3 /Lib/_pyrepl | |
parent | 48c777688305bfa45038a15ab09c03350503a2c4 (diff) | |
download | cpython-40a024c9835cddd85f14bab4b1e8f6545a621208.zip cpython-40a024c9835cddd85f14bab4b1e8f6545a621208.tar.gz cpython-40a024c9835cddd85f14bab4b1e8f6545a621208.tar.bz2 |
[3.13] gh-119555: catch SyntaxError from compile() in the InteractiveColoredConsole (GH-119557) (#119709)
Diffstat (limited to 'Lib/_pyrepl')
-rw-r--r-- | Lib/_pyrepl/simple_interact.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyrepl/simple_interact.py b/Lib/_pyrepl/simple_interact.py index 3dfb1d7..1568a73 100644 --- a/Lib/_pyrepl/simple_interact.py +++ b/Lib/_pyrepl/simple_interact.py @@ -96,7 +96,7 @@ class InteractiveColoredConsole(code.InteractiveConsole): item = wrapper([stmt]) try: code = compile(item, filename, the_symbol, dont_inherit=True) - except (OverflowError, ValueError): + except (OverflowError, ValueError, SyntaxError): self.showsyntaxerror(filename) return False |