Skip to content

Instantly share code, notes, and snippets.

@wataken44
Created June 14, 2012 13:56
Show Gist options
  • Save wataken44/2930459 to your computer and use it in GitHub Desktop.
Save wataken44/2930459 to your computer and use it in GitHub Desktop.
singleton for python
def singleton(cls):
cls.__instance = cls()
setattr(cls, '__new__', None)
setattr(cls, '__init__', None)
setattr(cls, 'get_instance', lambda : cls.__instance)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment