summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/extension_types/shrubbery_2.pyx
blob: e0d8c45b53846f8fa5eaa991dd33daf769b2f32c (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