diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-02-04 06:35:10 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2017-02-04 06:35:10 (GMT) |
commit | 09f939d2c4485f43ae50fc04f9ba439da850bd93 (patch) | |
tree | 49c787e96e28557d243022c0ee7fbcec6d2c4248 /Doc | |
parent | b1d3f661d77eb0716a6eea595a59428590790b4c (diff) | |
parent | 5a001eea5b9da4f2bd099f3156ba75903c9b949d (diff) | |
download | cpython-09f939d2c4485f43ae50fc04f9ba439da850bd93.zip cpython-09f939d2c4485f43ae50fc04f9ba439da850bd93.tar.gz cpython-09f939d2c4485f43ae50fc04f9ba439da850bd93.tar.bz2 |
Issue #29198: Merge from 3.6
Diffstat (limited to 'Doc')
-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]) |