Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down