diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2017-05-01 01:25:58 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@gmail.com> | 2017-05-01 01:25:58 (GMT) |
commit | 2e624690bd74071358566300b7ef0bc45f444a30 (patch) | |
tree | f96176f5997f38c00974854907b586ce887981a3 /Doc/reference | |
parent | 9dc2b3809f38be2e403ee264958106badfda142d (diff) | |
download | cpython-2e624690bd74071358566300b7ef0bc45f444a30.zip cpython-2e624690bd74071358566300b7ef0bc45f444a30.tar.gz cpython-2e624690bd74071358566300b7ef0bc45f444a30.tar.bz2 |
bpo-29679: Implement @contextlib.asynccontextmanager (#360)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 4b49bfd..25afc35 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -2575,6 +2575,8 @@ An example of an asynchronous iterable object:: result in a :exc:`RuntimeError`. +.. _async-context-managers: + Asynchronous Context Managers ----------------------------- |