Add AsyncContextManager to typing module documentation. (GH-6822)
This commit is contained in:
parent
545c955be9
commit
b7b493e2fb
|
@ -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`.
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Add missing documentation for ``typing.AsyncContextManager``.
|
Loading…
Reference in New Issue