Commit b4864b08 authored by Stefan Behnel's avatar Stefan Behnel

more test fixes for Py3

parent 8bfd3ed6
...@@ -6,7 +6,7 @@ __doc__ = u""" ...@@ -6,7 +6,7 @@ __doc__ = u"""
import sys import sys
if sys.version_info[0] < 3: if sys.version_info[0] < 3:
__doc__ = __doc__.replace(u" b'", u" '") __doc__ = __doc__.replace(u"b'", u"'")
class X: class X:
slots = ["", ] slots = ["", ]
...@@ -3,16 +3,16 @@ __doc__ = u""" ...@@ -3,16 +3,16 @@ __doc__ = u"""
u'This is a function docstring.' u'This is a function docstring.'
>>> C.__doc__ >>> C.__doc__
u'This is a class docstring.' 'This is a class docstring.'
>>> CS.__doc__ >>> CS.__doc__
u'This is a subclass docstring.' 'This is a subclass docstring.'
>>> print(CSS.__doc__) >>> print(CSS.__doc__)
None None
>>> T.__doc__ >>> T.__doc__
u'This is an extension type docstring.' 'This is an extension type docstring.'
>>> TS.__doc__ >>> TS.__doc__
u'This is an extension subtype docstring.' 'This is an extension subtype docstring.'
>>> TSS.__doc__ >>> TSS.__doc__
Compare with standard Python: Compare with standard Python:
...@@ -20,7 +20,7 @@ Compare with standard Python: ...@@ -20,7 +20,7 @@ Compare with standard Python:
>>> def f(): >>> def f():
... 'This is a function docstring.' ... 'This is a function docstring.'
>>> f.__doc__ >>> f.__doc__
u'This is a function docstring.' 'This is a function docstring.'
>>> class C: >>> class C:
... 'This is a class docstring.' ... 'This is a class docstring.'
...@@ -30,9 +30,9 @@ Compare with standard Python: ...@@ -30,9 +30,9 @@ Compare with standard Python:
... pass ... pass
>>> C.__doc__ >>> C.__doc__
u'This is a class docstring.' 'This is a class docstring.'
>>> CS.__doc__ >>> CS.__doc__
u'This is a subclass docstring.' 'This is a subclass docstring.'
>>> CSS.__doc__ >>> 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