Skip to content

Instantly share code, notes, and snippets.

@harrtho
Created November 14, 2017 18:07
Show Gist options
  • Save harrtho/ca338e42167c333b53c576576e746cca to your computer and use it in GitHub Desktop.
Save harrtho/ca338e42167c333b53c576576e746cca to your computer and use it in GitHub Desktop.
class Borg(object):
"""
Impementation of the Borg-Pattern.
Source: http://code.activestate.com/recipes/66531/
"""
__we_are_one = {}
def __init__(self):
self.__dict__ = self. __we_are_one
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment