What is the best way to implement the singleton pattern in Python? It seems impossible to declare the constructor private or protected as is normally done with the Singleton pattern...
|
|
|
|
|
|
|
This is a duplicate of this question. |
||
|
|
|
|
The Singleton Pattern implemented with Python courtesy of ActiveState. It looks like the trick is to put the class that's supposed to only have one instance inside of another class. |
||
|
|
