Commit 8873ce12 authored by Robert Bradshaw's avatar Robert Bradshaw

Out of order base class test.

parent db5d5a41
cdef class B(A):
cpdef foo(self):
"""
>>> B().foo()
B
"""
print "B"
cdef class A(object):
cpdef foo(self):
"""
>>> A().foo()
A
"""
print "A"
cdef class C(A):
cpdef foo(self):
"""
>>> C().foo()
C
"""
print "C"
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