Commit b42a817e authored by Stefan Behnel's avatar Stefan Behnel

remove unnecessary complication from test

parent 24549d0c
__doc__ = u"""
>>> x
5L
"""
>>> x == 5 or repr(x)
True
"""
import sys
if sys.version_info[0] >= 3 or sys.maxint > 2**31:
__doc__ = __doc__.replace(u"5L", u"5")
cdef unsigned int ui
ui = 5
......
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