π python test.py
File "/test.py", line 1
b"Δ"
^
SyntaxError: bytes can only contain ASCII literal characters
π $c:temp = "b'ΔΔΔΔΔΔΔΔ'"
π py temp
File "C:\temp", line 1
b'ΔΔΔΔΔΔΔΔ'
^
π python test.py
File "/test.py", line 1
b"Δ"
^
SyntaxError: bytes can only contain ASCII literal characters
b"Δ"Here the caret is pointing to blackspace after the code
So each non-ASCII character is adding more incorrect offset:
Expected
Linked PRs