Commit 60b38b73 authored by Stefan Behnel's avatar Stefan Behnel

make doctest easier to debug

parent a5f77c7f
# ticket: 359 # ticket: 359
__doc__ = u""" __doc__ = """
>>> py_string1.decode('ASCII') == 'test toast taste' >>> print(py_string1.decode('iso8859-1'))
True test toast taste
>>> py_string1 == py_string2 == py_string3 >>> print(py_string2.decode('iso8859-1'))
True test toast taste
>>> print(py_string3.decode('iso8859-1'))
test toast taste
""" """
cdef unsigned char* some_c_unstring = 'test toast taste' cdef unsigned char* some_c_unstring = 'test toast taste'
......
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