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 / run / cimport_alias_subclass.pyx
Size: Mime:
# mode: compile


cimport cimport_alias_subclass_helper as cash

cdef class Derived(cash.Base):
    cdef bint foo(self):
        print "Hello"

def run():
    """
    >>> run()
    Hello
    """
    d = Derived()
    d.foo()