Skip to content

Instantly share code, notes, and snippets.

@nickserv
Last active December 23, 2015 21:19
Show Gist options
  • Save nickserv/6695542 to your computer and use it in GitHub Desktop.
Save nickserv/6695542 to your computer and use it in GitHub Desktop.
Python: Borg Pattern
# See http://code.activestate.com/recipes/66531/
class Borg:
__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