From: Stefan Behnel Date: Sat, 22 Aug 2009 14:17:44 +0000 (+0200) Subject: enable tests in Py3 X-Git-Tag: 0.12.alpha0~220 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cd29303bdeacb647e270b41b41fe4944f0edcb00;p=cython.git enable tests in Py3 --- diff --git a/tests/run/always_allow_keywords_T295.pyx b/tests/run/always_allow_keywords_T295.pyx index 3ead8145..7458cb7d 100644 --- a/tests/run/always_allow_keywords_T295.pyx +++ b/tests/run/always_allow_keywords_T295.pyx @@ -1,4 +1,4 @@ -__doc__ = """ +__doc__ = u""" >>> func1(None) >>> func1(*[None]) >>> func1(arg=None) diff --git a/tests/run/numpy_ValueError_T172.pyx b/tests/run/numpy_ValueError_T172.pyx index 9f5d9d82..6930ee41 100644 --- a/tests/run/numpy_ValueError_T172.pyx +++ b/tests/run/numpy_ValueError_T172.pyx @@ -1,4 +1,4 @@ -__doc__ = """ +__doc__ = u""" >>> 1 1 """