From: Stefan Behnel Date: Sun, 15 Aug 2010 19:21:22 +0000 (+0200) Subject: disable extended unicode test for Python versions < 2.6.5 X-Git-Tag: 0.13~13^2~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c90d952d4b92157fcf6884822368adbbca0d931d;p=cython.git disable extended unicode test for Python versions < 2.6.5 --- diff --git a/tests/run/unicodeliterals.pyx b/tests/run/unicodeliterals.pyx index 642d497f..bfe25d9b 100644 --- a/tests/run/unicodeliterals.pyx +++ b/tests/run/unicodeliterals.pyx @@ -71,7 +71,7 @@ __doc__ = br""" True """ -if sys.version_info >= (2,6): +if sys.version_info >= (2,6,5): # this doesn't work well in older Python versions __doc__ += u"""\ >>> expected = u'\U00101234' # unescaped by Cython