Borg with MetaClass ?
Singleton is one of the well known design pattern. In python, most of us use the Borg Singleton like, which is not a true Singleton, since only the ‘state is shared’. In fact, you use distinct objects but they share … Continue reading
tag: pattern, Python