diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/basics/string_cr_conversion.py | 1 | ||||
| -rw-r--r-- | tests/basics/string_crlf_conversion.py | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/basics/string_cr_conversion.py b/tests/basics/string_cr_conversion.py new file mode 100644 index 000000000..0c3ba16b8 --- /dev/null +++ b/tests/basics/string_cr_conversion.py @@ -0,0 +1 @@ +# this file has CR line endings to test lexer's conversion of them to LF
# in triple quoted strings
print(repr("""abc
def"""))
\ No newline at end of file diff --git a/tests/basics/string_crlf_conversion.py b/tests/basics/string_crlf_conversion.py new file mode 100644 index 000000000..f91121099 --- /dev/null +++ b/tests/basics/string_crlf_conversion.py @@ -0,0 +1,4 @@ +# this file has CRLF line endings to test lexer's conversion of them to LF
+# in triple quoted strings
+print(repr("""abc
+def"""))
|
