more test fixes for Py3
authorStefan Behnel <scoder@users.berlios.de>
Wed, 14 May 2008 22:49:08 +0000 (00:49 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Wed, 14 May 2008 22:49:08 +0000 (00:49 +0200)
tests/run/kostyrka2.pyx
tests/run/r_docstrings.pyx

index e3c67e9354e87d30ef4ae0f47b1c0a09d4ea242b..bd6b076c37b1a2e78c5aadd62e31f8b210c4374c 100644 (file)
@@ -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 = ["", ]
index 1fe98d47586f7330b47eecd386620a4afe69d266..c5efb8f045dc88c044dfa9b93da6251b045386bf 100644 (file)
@@ -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__
 """