From: Stefan Behnel Date: Wed, 14 May 2008 22:49:08 +0000 (+0200) Subject: more test fixes for Py3 X-Git-Tag: 0.9.8rc1~37^2~72 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b4864b084ca967da481e2e35e9eca22aa5c2af27;p=cython.git more test fixes for Py3 --- diff --git a/tests/run/kostyrka2.pyx b/tests/run/kostyrka2.pyx index e3c67e93..bd6b076c 100644 --- a/tests/run/kostyrka2.pyx +++ b/tests/run/kostyrka2.pyx @@ -6,7 +6,7 @@ __doc__ = u""" import sys if sys.version_info[0] < 3: - __doc__ = __doc__.replace(u" b'", u" '") + __doc__ = __doc__.replace(u"b'", u"'") class X: slots = ["", ] diff --git a/tests/run/r_docstrings.pyx b/tests/run/r_docstrings.pyx index 1fe98d47..c5efb8f0 100644 --- a/tests/run/r_docstrings.pyx +++ b/tests/run/r_docstrings.pyx @@ -3,16 +3,16 @@ __doc__ = u""" u'This is a function docstring.' >>> C.__doc__ - u'This is a class docstring.' + 'This is a class docstring.' >>> CS.__doc__ - u'This is a subclass docstring.' + 'This is a subclass docstring.' >>> print(CSS.__doc__) None >>> T.__doc__ - u'This is an extension type docstring.' + 'This is an extension type docstring.' >>> TS.__doc__ - u'This is an extension subtype docstring.' + 'This is an extension subtype docstring.' >>> TSS.__doc__ Compare with standard Python: @@ -20,7 +20,7 @@ Compare with standard Python: >>> def f(): ... 'This is a function docstring.' >>> f.__doc__ - u'This is a function docstring.' + 'This is a function docstring.' >>> class C: ... 'This is a class docstring.' @@ -30,9 +30,9 @@ Compare with standard Python: ... pass >>> C.__doc__ - u'This is a class docstring.' + 'This is a class docstring.' >>> CS.__doc__ - u'This is a subclass docstring.' + 'This is a subclass docstring.' >>> CSS.__doc__ """