Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / broken / r_extinherit.pyx
Size: Mime:
cdef class Parrot:

    cdef object plumage

    def __init__(self):
        self.plumage = "yellow"

    def describe(self):
        print "This bird has lovely", self.plumage, "plumage."


cdef class Norwegian(Parrot):

    def __init__(self):
        self.plumage = "blue"