summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/extension_types/shrubbery_2.pyx
blob: d05d28243d8fbf30459a561ac26e6ff650b4ecfe (plain)
1
2
3
4
5
6
7
8
from my_module cimport Shrubbery

cdef Shrubbery another_shrubbery(Shrubbery sh1):
    cdef Shrubbery sh2
    sh2 = Shrubbery()
    sh2.width = sh1.width
    sh2.height = sh1.height
    return sh2