-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
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:
The documentation states:
Indentation cannot be split over multiple physical lines using backslashes; the whitespace up to the first backslash determines the indentation.
When this rule applies to some, but not all, lines in a block, a TabError is sometimes unexpectedly raised:
L1 = 'if 1:\n'
L2 = ' 1\n'
L3 = ' \\\n'
L4 = ' 1\n'
exec(L1 + L2 + L3 + L4)
# works as expected
L1 = 'if 1:\n'
L2 = '\t1\n'
L3 = '\t\\\n'
L4 = '\t\t1\n'
exec(L1 + L2 + L3 + L4)
# TabError: inconsistent use of tabs and spaces in indentationAlso, when a line containing only a backslash is explicitly joined with an indented line, an IndentationError is unexpectedly raised:
exec('\\\n 1')
# IndentationError: unexpected indentCPython versions tested on:
3.10, 3.11, 3.12, 3.13, 3.14
Operating systems tested on:
macOS
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