Commit b054c8c4 authored by Robert Bradshaw's avatar Robert Bradshaw

Testcase for #411, cpdef temps.

parent e2fed4ae
__doc__ = """
>>> A().is_True()
True
>>> A().is_False()
False
>>> B().is_True()
True
>>> B().is_False()
False
"""
cdef class A:
cpdef is_True(self):
return True
cpdef is_False(self):
return not self.is_True()
class B(A):
def is_True(self):
return True
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