Skip to content

Commit 17994d1

Browse files
committed
tests: Add test for unicode string iteration.
1 parent 79b7fe2 commit 17994d1

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

tests/unicode/unicode_iter.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
for c in "Hello":
2+
print(c)
3+
for c in "Привет":
4+
print(c)

0 commit comments

Comments
 (0)