From 8ab9ea7066b2a3a8fb301dd0fc4aa8864d6cec07 Mon Sep 17 00:00:00 2001 From: Mr Keuz Date: Thu, 14 Apr 2022 19:48:36 +0300 Subject: [PATCH] Add stdlib @cached_property to list --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9f6c02a..e8132dd 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ abstract methods. generator-based coroutines. New in version 3.4. - [@atexit.register](https://docs.python.org/2.7/library/atexit.html#atexit.register) Register func as a function to be executed at termination. +- [@cached_property](https://docs.python.org/3.8/library/functools.html#functools.cached_property) - Similar to [@property](https://docs.python.org/3.5/library/functions.html#property), with the addition of caching. New in python 3.8. - [@classmethod](https://docs.python.org/3.5/library/functions.html#classmethod) Return a class method for function. - [@contextlib.contextmanager](https://docs.python.org/3.5/library/contextlib.html#contextlib.contextmanager) Define a factory function for with statement context managers, without needing to create a class or separate `__enter__()` and