Comment on Python classes aren’t always the best solutionComments−tcdent1yRule of thumb:If you find yourself implementing a singleton in Python, you probably wanted a module.−chaz61yWho needs a singleton when there is @lru_cache(maxsize=1) /s
Comments
Rule of thumb:
If you find yourself implementing a singleton in Python, you probably wanted a module.
Who needs a singleton when there is @lru_cache(maxsize=1) /s