aboutsummaryrefslogtreecommitdiff
path: root/tests/basics
diff options
context:
space:
mode:
authorPaul Sokolovsky2014-06-05 21:17:46 +0300
committerPaul Sokolovsky2014-06-05 21:17:46 +0300
commitf675ff39576137e44a2fa6416619fe9a59cf2a0b (patch)
treeb94c080fdbd6e552f9c3713044daae2317ef5b90 /tests/basics
parent11de8399fe5f9ef54589b14470faf8d4fcc5ccaa (diff)
parentdaf973ae0074136bb456298e1cdb85666261ce60 (diff)
Merge pull request #665 from Rosuav/naming3.3
Change comments (mainly URLs) to no longer specifically say Python 3.3
Diffstat (limited to 'tests/basics')
-rw-r--r--tests/basics/string-repr.py2
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))))