mirror of
https://github.com/micropython/micropython.git
synced 2025-07-31 18:01:09 +02:00
Only noticeable difference is how newlines are encoded in triple-quoted strings. The behaviour now matches CPython3.
5 lines
133 B
Python
5 lines
133 B
Python
# this file has CRLF line endings to test lexer's conversion of them to LF
|
|
# in triple quoted strings
|
|
print(repr("""abc
|
|
def"""))
|