Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > by-pkgid > 72e0913cefe7683427338e51dd70bbde > files > 230

python-cython-0.11.3-1mdv2009.1.x86_64.rpm

#
#  Example of an extension type.
#

cdef class Spam:
  cdef public 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!"