Add AsyncContextManager to typing module documentation. (GH-6822)

(cherry picked from commit b7b493e2fb)

Co-authored-by: Travis DePrato <773453+travigd@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2018-05-14 18:10:47 -07:00 committed by GitHub
parent b57aeac82c
commit cc598ae264
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -666,6 +666,12 @@ The module defines the following classes, functions and decorators:
.. versionadded:: 3.6 .. versionadded:: 3.6
.. class:: AsyncContextManager(Generic[T_co])
A generic version of :class:`contextlib.AbstractAsyncContextManager`.
.. versionadded:: 3.6
.. class:: Dict(dict, MutableMapping[KT, VT]) .. class:: Dict(dict, MutableMapping[KT, VT])
A generic version of :class:`dict`. A generic version of :class:`dict`.

View file

@ -0,0 +1 @@
Add missing documentation for ``typing.AsyncContextManager``.