Skip to content

Instantly share code, notes, and snippets.

@zerok
Created July 22, 2008 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zerok/852 to your computer and use it in GitHub Desktop.
Save zerok/852 to your computer and use it in GitHub Desktop.
class Test(object):
def __init__(self):
self.test1 = "lala"
def __call__(self):
print self.__dict__
if __name__ == '__main__':
Test()()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment