summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/sharing_declarations/shrubbing.pyx
blob: bb97e7e777c6810b94f67df27fc271df23ce315a (plain)
1
2
3
4
5
6
7
cdef class Shrubbery:
    def __cinit__(self, int w, int l):
        self.width = w
        self.length = l

def standard_shrubbery():
    return Shrubbery(3, 7)