Skip to content

Commit

Permalink
Add AsyncContextManager to typing module documentation. (GH-6822)
Browse files Browse the repository at this point in the history
  • Loading branch information
twavv authored and ilevkivskyi committed May 14, 2018
1 parent 545c955 commit b7b493e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add missing documentation for ``typing.AsyncContextManager``.

0 comments on commit b7b493e

Please sign in to comment.