From: Stefan Behnel Date: Fri, 23 Jul 2010 15:25:57 +0000 (+0200) Subject: Py3 test fix X-Git-Tag: 0.13.beta0 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=292d486f4264299adfaf4d2aff1697f794f1347f;p=cython.git Py3 test fix --- diff --git a/tests/run/unicodeliterals.pyx b/tests/run/unicodeliterals.pyx index 35d53443..661219bd 100644 --- a/tests/run/unicodeliterals.pyx +++ b/tests/run/unicodeliterals.pyx @@ -75,8 +75,8 @@ if sys.version_info >= (2,6): # this doesn't work well in older Python versions __doc__ += u"""\ >>> expected = u'\U00101234' # unescaped by Cython - >>> if wide_literal == expected: print True - ... else: print repr(wide_literal), repr(expected) + >>> if wide_literal == expected: print(True) + ... else: print(repr(wide_literal), repr(expected)) True """