/ Published in: Python
Expand |
Embed | Plain Text
class Borg(object): # Borg Class Example - do not inherit, just for copy/paste! # It is faster than the Singleton # approach if speed is a _big_ issue. __shared_state = {} def __init__(self): """ Constructor. """ self.__dict__ = Borg.__shared_state
You need to login to post a comment.
