[CentralOH] Another Revision of Singleton

John Santiago jdsantiagojr at gmail.com
Mon Mar 18 05:32:37 CET 2013


Found som really great post. Really hoping this is the right way to go
about it. revised the getInstance

import threading


class Singleton(object):
    __instance = None
    __lockInstance = threading.RLock()

    def __new__(cls):
        raise TypeError("Error: Singletons may only be instantiated through
getInstance().")

    def __init__(self, *args, **kwargs):
        pass

    @classmethod
    def getInstance(cls, *args, **kwargs):
        cls.__lockInstance.acquire()
        try:
            if cls.__instance is None:
                cls.__instance = object.__new__(cls)
                cls.__instance.__init__(*args, **kwargs)
        finally:
            cls.__lockInstance.release()

        return cls.__instance

-- 
This electronic message is intended to be for the use only of the named
recipient, and may contain information that is confidential or privileged.
If you are not the intended recipient, you are hereby notified that any
disclosure, copying, distribution or use of the contents of this message is
strictly prohibited.  If you have received this message in error or are not
the named recipient, please notify us immediately by contacting the sender
at the electronic mail address noted above, and delete and destroy all
copies of this message.  Thank you.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/centraloh/attachments/20130318/ba8685b9/attachment.html>


More information about the CentralOH mailing list