-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Open
Labels
interpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)topic-parsertype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
Bug report
Bug description:
Consider this:
for a in b:
pass
elso:
pass
this shows:
>>> for a in b:
... pass
... elso:
... pass
...
File "<python-input-0>", line 3
elso:
^^^^
SyntaxError: invalid syntax. Did you mean 'else'?
but
File "/Users/pgalindo3/github/python/main/lol.py", line 3
elso:
^
SyntaxError: invalid syntax
when executed over a file.
CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux
Linked PRs
Metadata
Metadata
Assignees
Labels
interpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)topic-parsertype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error