diff options
| author | Paul Sokolovsky | 2014-06-14 02:08:48 +0300 |
|---|---|---|
| committer | Paul Sokolovsky | 2014-06-27 00:04:19 +0300 |
| commit | 17994d1bd3fcf7e37974ecaf0e2ba0cab7c65665 (patch) | |
| tree | c3c9f23f3250de8fa6f218ce95cdda7b24924c5b /tests | |
| parent | 79b7fe2ee58c1ac46c2fcb74bea69f2810bced5b (diff) | |
tests: Add test for unicode string iteration.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/unicode/unicode_iter.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unicode/unicode_iter.py b/tests/unicode/unicode_iter.py new file mode 100644 index 000000000..f08a4acee --- /dev/null +++ b/tests/unicode/unicode_iter.py @@ -0,0 +1,4 @@ +for c in "Hello": + print(c) +for c in "Привет": + print(c) |
