Skip to content

Instantly share code, notes, and snippets.

@wingyiu
Created December 12, 2017 16:18
Show Gist options
  • Save wingyiu/b7e71288b33eac8d5fbdea9b38b0f389 to your computer and use it in GitHub Desktop.
Save wingyiu/b7e71288b33eac8d5fbdea9b38b0f389 to your computer and use it in GitHub Desktop.
class Borg:
__shared_state = {}
def __new__(cls, *args, **kwargs):
instance = super().__new__(cls, *args, **kwargs)
instance.__dict__ = cls.__shared_state
return instance
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment