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

This commit is contained in:
Travis DePrato 2018-05-14 18:14:07 -04:00 committed by Ivan Levkivskyi
parent 545c955be9
commit b7b493e2fb
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
.. class:: AsyncContextManager(Generic[T_co])
A generic version of :class:`contextlib.AbstractAsyncContextManager`.
.. versionadded:: 3.6
.. class:: Dict(dict, MutableMapping[KT, VT])
A generic version of :class:`dict`.

View File

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