-
-
Notifications
You must be signed in to change notification settings - Fork 33.6k
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:
In python 3.8
>>> 0
File "<stdin>", line 1
0
^
IndentationError: unexpected indent
>>> import sys, traceback
>>> sys.excepthook = lambda *exc_info: traceback.print_exception(*exc_info)
>>> 0
File "<stdin>", line 1
0
^
IndentationError: unexpected indentIn python 3.9 ... 3.13.0a3#e7331365b488382d906ce6733ab1349ded49c928^
>>> 0
File "<stdin>", line 1
0
IndentationError: unexpected indent
>>> import sys, traceback
>>> sys.excepthook = lambda *exc_info: traceback.print_exception(*exc_info)
>>> 0
File "<stdin>", line 1
0
^
IndentationError: unexpected indentIn python 3.13.0a3#e7331365b488382d906ce6733ab1349ded49c928 ... main
>>> 0
File "<stdin>", line 1
0
^
IndentationError: unexpected indentCPython versions tested on:
3.9 ... 3.13.0a3#e7331365b488382d906ce6733ab1349ded49c928^
Operating systems tested on:
Windows
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