The one time I wrote a singleton in Python I used a class where all the member functions had the classmethod decorator.
class foo:
x = 1
@classmethod
def increment(cls, y = 1)
1):
cls.x += y
|
2 | added missing def | ||
|
The one time I wrote a singleton in Python I used a class where all the member functions had the classmethod decorator.
|
||||
|
1 |
|
||
|
The one time I wrote a singleton in Python I used a class where all the member functions had the classmethod decorator.
|
||||