diff options
| -rw-r--r-- | tests/unicode/data/utf-8_1.txt | 1 | ||||
| -rw-r--r-- | tests/unicode/file1.py | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/tests/unicode/data/utf-8_1.txt b/tests/unicode/data/utf-8_1.txt new file mode 100644 index 000000000..d84c480d1 --- /dev/null +++ b/tests/unicode/data/utf-8_1.txt @@ -0,0 +1 @@ +Привет diff --git a/tests/unicode/file1.py b/tests/unicode/file1.py new file mode 100644 index 000000000..554e88674 --- /dev/null +++ b/tests/unicode/file1.py @@ -0,0 +1,4 @@ +f = open("unicode/data/utf-8_1.txt") +l = f.readline() +print(l) +print(len(l)) |
