module utils.singleton
function singleton
singleton(class_)
Class decorator that only allows one instance to be created.
@singleton
class Test: ...
assert Test() is Test() # True
This file was automatically generated via lazydocs.