Commit b4864b08 authored by Stefan Behnel's avatar Stefan Behnel

more test fixes for Py3

parent 8bfd3ed6
......@@ -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 = ["", ]
......@@ -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__
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment