4 lines
115 B
Python
4 lines
115 B
Python
|
|
# Coverage test for unicode escape in a bytes literal.
|
||
|
|
# CPython issues a SyntaxWarning for this.
|
||
|
|
print(b"\u1234")
|