Commit 292d486f authored by Stefan Behnel's avatar Stefan Behnel

Py3 test fix

parent ff6b86fa
...@@ -75,8 +75,8 @@ if sys.version_info >= (2,6): ...@@ -75,8 +75,8 @@ if sys.version_info >= (2,6):
# this doesn't work well in older Python versions # this doesn't work well in older Python versions
__doc__ += u"""\ __doc__ += u"""\
>>> expected = u'\U00101234' # unescaped by Cython >>> expected = u'\U00101234' # unescaped by Cython
>>> if wide_literal == expected: print True >>> if wide_literal == expected: print(True)
... else: print repr(wide_literal), repr(expected) ... else: print(repr(wide_literal), repr(expected))
True True
""" """
......
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