projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86b46c1
)
fix test after changing autotestdict default setup
author
Stefan Behnel
<scoder@users.berlios.de>
Wed, 3 Nov 2010 14:14:29 +0000
(15:14 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Wed, 3 Nov 2010 14:14:29 +0000
(15:14 +0100)
tests/run/extpropertyref.pyx
patch
|
blob
|
history
diff --git
a/tests/run/extpropertyref.pyx
b/tests/run/extpropertyref.pyx
index 0feb96311477e89b7739f894d371cbd629be84c2..2efdffac36e9933f45c2f33504c822a7eaef1f2a 100644
(file)
--- a/
tests/run/extpropertyref.pyx
+++ b/
tests/run/extpropertyref.pyx
@@
-5,6
+5,9
@@
cdef class Spam:
def __get__(self):
"""
This is the docstring for Spam.eggs.__get__
+
+ >>> True
+ True
"""
return 42
@@
-16,9
+19,9
@@
def tomato():
>>> lines = __test__.keys()
>>> len(lines)
3
- >>> 'Spam.eggs.__get__ (line 5)' in lines
+ >>> 'Spam.eggs.__get__ (line 5)' in lines
or lines
True
- >>> 'tomato (line 1
1)' in
lines
+ >>> 'tomato (line 1
4)' in lines or
lines
True
"""
cdef Spam spam