diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2012-12-27 21:53:06 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2012-12-27 21:53:06 +0200 |
commit | 64df4a1c454967aaf42a6c34598eccec0561fb8b (patch) | |
tree | 450b015abc6cb4bcb9dd97722b1092c99efa10c1 /Lib/idlelib/EditorWindow.py | |
parent | e261055eafef6ea40fa5fd1c0b2590b34aaec392 (diff) | |
parent | 07e0e06f8a255a73d181e332dd8658814eb1ca50 (diff) | |
download | cpython-git-64df4a1c454967aaf42a6c34598eccec0561fb8b.tar.gz |
Issue #16504: Catch SyntaxErrors raised by tokenizer in IDLE.
Patch by Roger Serwy.
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index a15387823a..3397415205 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -1621,7 +1621,7 @@ class IndentSearcher(object): tokens = _tokenize.generate_tokens(self.readline) for token in tokens: self.tokeneater(*token) - except _tokenize.TokenError: + except (_tokenize.TokenError, SyntaxError): # since we cut off the tokenizer early, we can trigger # spurious errors pass |