Re: Python3.7 singleton is not unique anymore
Shame on me :-) Thank you very much Ethan. -- https://mail.python.org/mailman/listinfo/python-list
Re: Python3.7 singleton is not unique anymore
On 09/17/2019 09:45 AM, Eko palypse wrote: else: class FOO(): def __init__(self, metaclass=Singleton): In your test code, the `metaclass=Singleton` should be in `class Foo`: class FOO(metaclass=Singleton): ... -- ~Ethan~ -- https://mail.python.org/mailman/listinfo/p