summaryrefslogtreecommitdiffstatshomepage
path: root/tests
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-06-05 21:17:46 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-06-05 21:17:46 +0300
commitf675ff39576137e44a2fa6416619fe9a59cf2a0b (patch)
treeb94c080fdbd6e552f9c3713044daae2317ef5b90 /tests
parent11de8399fe5f9ef54589b14470faf8d4fcc5ccaa (diff)
parentdaf973ae0074136bb456298e1cdb85666261ce60 (diff)
downloadmicropython-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.py2
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))))