Commit eca5b483 authored by Stefan Behnel's avatar Stefan Behnel

Py3 test fix

parent 81c90b1c
...@@ -12,8 +12,14 @@ def tomato(): ...@@ -12,8 +12,14 @@ def tomato():
""" """
>>> tomato() >>> tomato()
42 42
>>> sorted(__test__.keys())
[u'Spam.eggs.__get__ (line 5)', u'tomato (line 11)'] >>> lines = __test__.keys()
>>> len(lines)
2
>>> 'Spam.eggs.__get__ (line 5)' in lines
True
>>> 'tomato (line 11)' in lines
True
""" """
cdef Spam spam cdef Spam spam
cdef object lettuce cdef object lettuce
......
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