5 ms·
Aside from @dataclass, @lru_cache is my most used.
by monkeybutton 4y ago
Aside from @dataclass, @lru_cache is my most used.
- ConceptJunkie 4y agoI created a decorator for validating arguments for functions that are receiving arguments from user input. It eliminated _so much_ boilerplate code. I use decorators quite a bit. The feature is incredibly powerful. Once you find @lru_cache, you start realizing how many ways you can take advantage of the feature.
- pizza 4y ago@cached_property is the new lru_cache for me, much of the time :^)