Commit 0ed84521 authored by Stefan Behnel's avatar Stefan Behnel

Py3 test case fix

parent 5ed722fb
......@@ -5,6 +5,10 @@ __doc__ = u"""
00*01*02
"""
import sys
if sys.version_info[0] >= 3:
__doc__ = __doc__.replace(u" u'", u" '").replace(u' u"', u' "')
def for_else():
cdef int i, j=0, k=2
for i from 0 <= i < 10:
......
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