Skip to content

Instantly share code, notes, and snippets.

@sebastibe
Created January 1, 2013 02:10
Show Gist options
  • Save sebastibe/4424765 to your computer and use it in GitHub Desktop.
Save sebastibe/4424765 to your computer and use it in GitHub Desktop.
All instances share one same state.
# http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/66531.
class Borg(object):
__shared_state = {}
def __init__(self):
self.__dict__ = self.__shared_state
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment