diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-02-04 06:34:48 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-02-04 06:34:48 (GMT) |
commit | 5a001eea5b9da4f2bd099f3156ba75903c9b949d (patch) | |
tree | 8fd894cc7b6272522fa87a1462085b4d75fc6cdd /Doc/library | |
parent | 14169b2a89d62170d1ef9542429bfedb3158aa6c (diff) | |
parent | 5702fb7b4d5adbeb82ec38d7d56ed339f7c90cc3 (diff) | |
download | cpython-5a001eea5b9da4f2bd099f3156ba75903c9b949d.zip cpython-5a001eea5b9da4f2bd099f3156ba75903c9b949d.tar.gz cpython-5a001eea5b9da4f2bd099f3156ba75903c9b949d.tar.bz2 |
Issue #29198: Merge from 3.5
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/typing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 6c4af4c..6c8982b 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -306,7 +306,7 @@ comparable for equality. The :data:`Any` type ---------------------- +-------------------- A special kind of type is :data:`Any`. A static type checker will treat every type as being compatible with :data:`Any` and :data:`Any` as being @@ -638,7 +638,7 @@ The module defines the following classes, functions and decorators: .. class:: AsyncIterator(AsyncIterable[T_co]) - A generic version of :class:`collections.abc.AsyncIterator`. + A generic version of :class:`collections.abc.AsyncIterator`. .. class:: ContextManager(Generic[T_co]) |