summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/sharing_declarations/shrubbing.pyx
blob: 8598b5c98635d0978a9d84fdd97139dcb64a4555 (plain)
1
2
3
4
5
6
7
8
9
10
 


cdef class Shrubbery:
    def __cinit__(self, int w, int l):
        self.width = w
        self.length = l

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