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


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

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