diff options
author | Chris Angelico <rosuav@gmail.com> | 2014-06-06 03:51:03 +1000 |
---|---|---|
committer | Chris Angelico <rosuav@gmail.com> | 2014-06-06 03:51:03 +1000 |
commit | daf973ae0074136bb456298e1cdb85666261ce60 (patch) | |
tree | 0fe8593769979883756a0c8585dec0ec1a011d87 /tests/basics/string-repr.py | |
parent | c074cd38c365d069616b5620a72db900b15038af (diff) |
Change comments (mainly URLs) to no longer specifically say Python 3.3
Diffstat (limited to 'tests/basics/string-repr.py')
-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 ba8dbe6d1..34da483a5 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)))) |