Commit 39f134d3 authored by Stefan Behnel's avatar Stefan Behnel

test fix - that's how things work ...

parent 2685f5ec
__doc__ = u""" __doc__ = u"""
>>> f.__doc__ >>> f.__doc__
u'This is a function docstring.' 'This is a function docstring.'
>>> C.__doc__ >>> C.__doc__
u'This is a class docstring.' u'This is a class docstring.'
...@@ -10,9 +10,9 @@ __doc__ = u""" ...@@ -10,9 +10,9 @@ __doc__ = u"""
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:
......
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