mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-24 06:15:42 -04:00

Only noticeable difference is how newlines are encoded in triple-quoted strings. The behaviour now matches CPython3.
1 line
127 B
Python
1 line
127 B
Python
# this file has CR line endings to test lexer's conversion of them to LF
|
|
# in triple quoted strings
|
|
print(repr("""abc
|
|
def"""))
|