PyBitmessage/src/singleton.py

8 lines
183 B
Python

def Singleton(cls):
instances = {}
def getinstance():
if cls not in instances:
instances[cls] = cls()
return instances[cls]
return getinstance