Commit cff8447f authored by Stefan Behnel's avatar Stefan Behnel

test case for ticket 232 (without __new__ support)

parent 452f923f
__doc__ = u"""
>>> set_attr(5)
>>> get_attr()
None
"""
cdef class MyExt:
cdef object attr
def set_attr(value):
MyExt().attr = value
def get_attr():
return MyExt().attr
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