Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > media > main-release > by-pkgid > 98d2a8067c38f8ad1c90c28223e6ee59 > files > 135

python-pyrex-0.9.6.4-1mdv2008.1.x86_64.rpm

#
#  Example of an extension type.
#

cdef class Spam:

  cdef int amount

  def __new__(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!"