You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
370 B
23 lines
370 B
4 years ago
|
#
|
||
|
# Example of an extension type.
|
||
|
#
|
||
|
|
||
|
cdef class Spam:
|
||
|
|
||
|
cdef int amount
|
||
|
|
||
|
def __cinit__(self):
|
||
|
self.amount = 0
|
||
|
|
||
|
def __dealloc__(self):
|
||
|
print self.amount, "tons of spam is history."
|
||
|
|
||
|
def get_amount(self):
|
||
|
return self.amount
|
||
|
|
||
|
def set_amount(self, new_amount):
|
||
|
self.amount = new_amount
|
||
|
|
||
|
def describe(self):
|
||
|
print self.amount, "tons of spam!"
|