diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-05 21:17:46 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-05 21:17:46 +0300 |
commit | f675ff39576137e44a2fa6416619fe9a59cf2a0b (patch) | |
tree | b94c080fdbd6e552f9c3713044daae2317ef5b90 /tests | |
parent | 11de8399fe5f9ef54589b14470faf8d4fcc5ccaa (diff) | |
parent | daf973ae0074136bb456298e1cdb85666261ce60 (diff) | |
download | micropython-f675ff39576137e44a2fa6416619fe9a59cf2a0b.tar.gz micropython-f675ff39576137e44a2fa6416619fe9a59cf2a0b.zip |
Merge pull request #665 from Rosuav/naming3.3
Change comments (mainly URLs) to no longer specifically say Python 3.3
Diffstat (limited to 'tests')
-rw-r--r-- | tests/basics/string-repr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/string-repr.py b/tests/basics/string-repr.py index ba8dbe6d1c..34da483a57 100644 --- a/tests/basics/string-repr.py +++ b/tests/basics/string-repr.py @@ -1,3 +1,3 @@ -# anything above 0xa0 is printed as Unicode by CPython3.3 +# anything above 0xa0 is printed as Unicode by CPython for c in range(0xa1): print("0x%02x: %s" % (c, repr(chr(c)))) |