diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-14 02:08:48 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-27 00:04:19 +0300 |
commit | 17994d1bd3fcf7e37974ecaf0e2ba0cab7c65665 (patch) | |
tree | c3c9f23f3250de8fa6f218ce95cdda7b24924c5b /tests/unicode/unicode_iter.py | |
parent | 79b7fe2ee58c1ac46c2fcb74bea69f2810bced5b (diff) | |
download | micropython-17994d1bd3fcf7e37974ecaf0e2ba0cab7c65665.tar.gz micropython-17994d1bd3fcf7e37974ecaf0e2ba0cab7c65665.zip |
tests: Add test for unicode string iteration.
Diffstat (limited to 'tests/unicode/unicode_iter.py')
-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 0000000000..f08a4aceed --- /dev/null +++ b/tests/unicode/unicode_iter.py @@ -0,0 +1,4 @@ +for c in "Hello": + print(c) +for c in "Привет": + print(c) |