tests: Add basic test for unicode file i/o.
This commit is contained in:
parent
f5f6c3b792
commit
ed07d035d5
|
@ -0,0 +1 @@
|
|||
Привет
|
|
@ -0,0 +1,4 @@
|
|||
f = open("unicode/data/utf-8_1.txt")
|
||||
l = f.readline()
|
||||
print(l)
|
||||
print(len(l))
|
Loading…
Reference in New Issue