From 39f134d31ce75e8003c791d80c20af6fc7d597b6 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 15 May 2008 10:59:54 +0200 Subject: [PATCH] test fix - that's how things work ... --- tests/run/r_docstrings.pyx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: -- 2.26.2