
import debugtools

################################################################
#
#  SAMPLE APPLICATION
#

class Person:
    def __eq__(self, other):
        return self.__dict__ == other.__dict__
    def __repr__(self):
        return "Person("+debugtools.dict_repr(self.__dict__)+")"

