Created
April 11, 2013 20:17
-
-
Save piccoloaiutante/5366827 to your computer and use it in GitHub Desktop.
Singleton example from python metaprogramming tutorial: http://python-3-patterns-idioms-test.readthedocs.org/en/latest/Metaprogramming.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Metaprogramming/Singleton.py | |
class Singleton(type): | |
instance = None | |
def __call__(cls, *args, **kw): | |
if not cls.instance: | |
cls.instance = super(Singleton, cls).__call__(*args, **kw) | |
return cls.instance | |
class ASingleton(object): | |
__metaclass__ = Singleton | |
a = ASingleton() | |
b = ASingleton() | |
assert a is b | |
print(a.__class__.__name__, b.__class__.__name__) | |
class BSingleton(object): | |
__metaclass__ = Singleton | |
c = BSingleton() | |
d = BSingleton() | |
assert c is d | |
print(c.__class__.__name__, d.__class__.__name__) | |
assert c is not a | |
""" Output: | |
('ASingleton', 'ASingleton') | |
('BSingleton', 'BSingleton') | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment