Commit 4f0f4ca7 authored by Stefan Behnel's avatar Stefan Behnel

fix doctest in Py3.4

parent 52373ff5
# cython: autotestdict=True
cdef class Spam:
property eggs:
......@@ -19,9 +21,9 @@ def tomato():
>>> lines = __test__.keys()
>>> len(lines)
3
>>> 'Spam.eggs.__get__ (line 5)' in lines or lines
>>> 'Spam.eggs.__get__ (line 7)' in lines or lines
True
>>> 'tomato (line 14)' in lines or lines
>>> 'tomato (line 16)' in lines or lines
True
"""
cdef Spam spam
......
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