Commit 2bd55da7 authored by Stefan Behnel's avatar Stefan Behnel

Py3 test fix

parent 09c833f0
...@@ -189,7 +189,7 @@ def test_loops_and_boxing(): ...@@ -189,7 +189,7 @@ def test_loops_and_boxing():
with nogil: with nogil:
with gil: with gil:
print string print string.decode('ASCII')
for c in string[4:]: for c in string[4:]:
print "%c" % c print "%c" % c
else: else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment