tests: Add test for unicode string iteration.

pull/695/head
Paul Sokolovsky 2014-06-14 02:08:48 +03:00
rodzic 79b7fe2ee5
commit 17994d1bd3
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,4 @@
for c in "Hello":
print(c)
for c in "Привет":
print(c)