From: Stefan Behnel Date: Thu, 15 May 2008 08:59:54 +0000 (+0200) Subject: test fix - that's how things work ... X-Git-Tag: 0.9.8rc1~37^2~59 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=39f134d31ce75e8003c791d80c20af6fc7d597b6;p=cython.git test fix - that's how things work ... --- diff --git a/tests/run/r_docstrings.pyx b/tests/run/r_docstrings.pyx index de6cf71b..af88a5ce 100644 --- a/tests/run/r_docstrings.pyx +++ b/tests/run/r_docstrings.pyx @@ -1,6 +1,6 @@ __doc__ = u""" >>> f.__doc__ - u'This is a function docstring.' + 'This is a function docstring.' >>> C.__doc__ u'This is a class docstring.' @@ -10,9 +10,9 @@ __doc__ = u""" 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: