diff options
| author | xyb <xieyanbo@gmail.com> | 2014-01-05 18:47:51 +0800 |
|---|---|---|
| committer | xyb <xieyanbo@gmail.com> | 2014-01-05 18:47:51 +0800 |
| commit | 8cfc9f07b90c9793ed73d1e67da9124014d794d7 (patch) | |
| tree | 2826b33792bd862123055c35fd1cc03fcaa4a715 /tests | |
| parent | 45b43c21c4f8e30dcff00c2429eddba20ca002aa (diff) | |
Implements str iterator
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/basics/tests/string1.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/basics/tests/string1.py b/tests/basics/tests/string1.py index 28aeaddbc..9d6f21d13 100644 --- a/tests/basics/tests/string1.py +++ b/tests/basics/tests/string1.py @@ -7,3 +7,6 @@ x += 'def' print(x) print('123' + "456") + +# iter +print(list('str')) |
