diff options
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 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)))) |