projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2685f5e
)
test fix - that's how things work ...
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 15 May 2008 08:59:54 +0000
(10:59 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 15 May 2008 08:59:54 +0000
(10:59 +0200)
tests/run/r_docstrings.pyx
patch
|
blob
|
history
diff --git
a/tests/run/r_docstrings.pyx
b/tests/run/r_docstrings.pyx
index de6cf71bd37f2e57a369da07dd752f9348bb11ac..af88a5ce491e1f3ff565cd5e57abbafce3a1401f 100644
(file)
--- a/
tests/run/r_docstrings.pyx
+++ b/
tests/run/r_docstrings.pyx
@@
-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: