Skip to content

Instantly share code, notes, and snippets.

@lvidarte
Created December 2, 2011 03:59
Show Gist options
  • Save lvidarte/1421681 to your computer and use it in GitHub Desktop.
Save lvidarte/1421681 to your computer and use it in GitHub Desktop.
The Borg design pattern
>>> class Borg:
... __shared_state = {}
... def __init__(self):
... self.__dict__ = self.__shared_state
...
>>> a = Borg()
>>> b = Borg()
>>> a.x = 1
>>> print b.x
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment