Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Singleton pattern in python (See related posts)

class Borg:
    __shared_state = {}
    def __init__(self):
        self.__dict__ = self.__shared_state

What a pythonic way to use Singleton. It uses shared-state
approach where you can actually have many instances as you want
but they all share the same state. See Alex's recipe.
>>> b = Borg()
>>> b.x = 1
>>> c = Borg()
>>> c.x
1

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts