summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-01 17:23:40 -0700
committerGitHub <noreply@github.com>2019-06-01 17:23:40 -0700
commitc76add7afd68387aa2481d672e1c0d7e7b4c9afc (patch)
tree981a1b2ab2637d54d25efced83e493c0a222c36d /Doc
parentac60d1afd2b04f61fe4c965740fa32809f2b84ed (diff)
downloadcpython-git-c76add7afd68387aa2481d672e1c0d7e7b4c9afc.tar.gz
Improve version added references in `typing` module docs (GH-13457)
(cherry picked from commit b7daabd711274a009e70556020efeae502a85f0b) Co-authored-by: Anthony Sottile <asottile@umich.edu>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/typing.rst22
1 files changed, 18 insertions, 4 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 21258a58d0..12f4c03f42 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -555,7 +555,7 @@ The module defines the following classes, functions and decorators:
A generic version of :class:`collections.abc.Collection`
- .. versionadded:: 3.6
+ .. versionadded:: 3.6.0
.. class:: AbstractSet(Sized, Collection[T_co])
@@ -599,6 +599,7 @@ The module defines the following classes, functions and decorators:
A generic version of :class:`collections.deque`.
+ .. versionadded:: 3.5.4
.. versionadded:: 3.6.1
.. class:: List(list, MutableSequence[T])
@@ -648,6 +649,8 @@ The module defines the following classes, functions and decorators:
A generic version of :class:`collections.abc.Awaitable`.
+ .. versionadded:: 3.5.2
+
.. class:: Coroutine(Awaitable[V_co], Generic[T_co T_contra, V_co])
A generic version of :class:`collections.abc.Coroutine`.
@@ -661,25 +664,33 @@ The module defines the following classes, functions and decorators:
async def bar() -> None:
x = await c # type: int
+ .. versionadded:: 3.5.3
+
.. class:: AsyncIterable(Generic[T_co])
A generic version of :class:`collections.abc.AsyncIterable`.
+ .. versionadded:: 3.5.2
+
.. class:: AsyncIterator(AsyncIterable[T_co])
A generic version of :class:`collections.abc.AsyncIterator`.
+ .. versionadded:: 3.5.2
+
.. class:: ContextManager(Generic[T_co])
A generic version of :class:`contextlib.AbstractContextManager`.
- .. versionadded:: 3.6
+ .. versionadded:: 3.5.4
+ .. versionadded:: 3.6.0
.. class:: AsyncContextManager(Generic[T_co])
A generic version of :class:`contextlib.AbstractAsyncContextManager`.
- .. versionadded:: 3.6
+ .. versionadded:: 3.5.4
+ .. versionadded:: 3.6.2
.. class:: Dict(dict, MutableMapping[KT, VT])
@@ -708,12 +719,14 @@ The module defines the following classes, functions and decorators:
A generic version of :class:`collections.Counter`.
+ .. versionadded:: 3.5.4
.. versionadded:: 3.6.1
.. class:: ChainMap(collections.ChainMap, MutableMapping[KT, VT])
A generic version of :class:`collections.ChainMap`.
+ .. versionadded:: 3.5.4
.. versionadded:: 3.6.1
.. class:: Generator(Iterator[T_co], Generic[T_co, T_contra, V_co])
@@ -778,7 +791,7 @@ The module defines the following classes, functions and decorators:
yield start
start = await increment(start)
- .. versionadded:: 3.5.4
+ .. versionadded:: 3.6.1
.. class:: Text
@@ -977,6 +990,7 @@ The module defines the following classes, functions and decorators:
raise RuntimeError('no way')
.. versionadded:: 3.5.4
+ .. versionadded:: 3.6.2
.. data:: Union