From b4864b084ca967da481e2e35e9eca22aa5c2af27 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 15 May 2008 00:49:08 +0200 Subject: [PATCH] more test fixes for Py3 --- tests/run/kostyrka2.pyx | 2 +- tests/run/r_docstrings.pyx | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) 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__ """ -- 2.26.2