test fix - that's how things work ...
authorStefan Behnel <scoder@users.berlios.de>
Thu, 15 May 2008 08:59:54 +0000 (10:59 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 15 May 2008 08:59:54 +0000 (10:59 +0200)
tests/run/r_docstrings.pyx

index de6cf71bd37f2e57a369da07dd752f9348bb11ac..af88a5ce491e1f3ff565cd5e57abbafce3a1401f 100644 (file)
@@ -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: