tests: Add test for unicode string iteration.

This commit is contained in:
Paul Sokolovsky 2014-06-14 02:08:48 +03:00
parent 79b7fe2ee5
commit 17994d1bd3
1 changed files with 4 additions and 0 deletions

View File

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