"""This is the Borg design pattern class, from
<http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/66531>.
Classes inherit this property if they want to share their state
between all instances."""
class Borg:
__shared_state = {}
def __init__(self):
self.__dict__ = self.__shared_state