Skip to content

Commit

Permalink
[3.9] [doc] Fix padding in some typing definitions (GH-22114) (GH-22115)
Browse files Browse the repository at this point in the history
Automerge-Triggered-By: @gvanrossum
(cherry picked from commit 2623868)


Co-authored-by: Andre Delfino <adelfino@gmail.com>
  • Loading branch information
miss-islington and andresdelfino committed Sep 6, 2020
1 parent a708ae7 commit e4b359d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ Corresponding to collections in :mod:`collections.abc`

.. class:: AbstractSet(Sized, Collection[T_co])

A generic version of :class:`collections.abc.Set`.
A generic version of :class:`collections.abc.Set`.

.. deprecated:: 3.9
:class:`collections.abc.Set` now supports ``[]``. See :pep:`585`.
Expand Down Expand Up @@ -1224,7 +1224,7 @@ Corresponding to collections in :mod:`collections.abc`

.. class:: Container(Generic[T_co])

A generic version of :class:`collections.abc.Container`.
A generic version of :class:`collections.abc.Container`.

.. deprecated:: 3.9
:class:`collections.abc.Container` now supports ``[]``. See :pep:`585`.
Expand All @@ -1245,11 +1245,11 @@ Corresponding to collections in :mod:`collections.abc`

.. class:: Mapping(Sized, Collection[KT], Generic[VT_co])

A generic version of :class:`collections.abc.Mapping`.
This type can be used as follows::
A generic version of :class:`collections.abc.Mapping`.
This type can be used as follows::

def get_position_in_index(word_list: Mapping[str, int], word: str) -> int:
return word_list[word]
def get_position_in_index(word_list: Mapping[str, int], word: str) -> int:
return word_list[word]

.. deprecated:: 3.9
:class:`collections.abc.Mapping` now supports ``[]``. See :pep:`585`.
Expand All @@ -1263,7 +1263,7 @@ Corresponding to collections in :mod:`collections.abc`

.. class:: MutableMapping(Mapping[KT, VT])

A generic version of :class:`collections.abc.MutableMapping`.
A generic version of :class:`collections.abc.MutableMapping`.

.. deprecated:: 3.9
:class:`collections.abc.MutableMapping` now supports ``[]``. See :pep:`585`.
Expand All @@ -1277,14 +1277,14 @@ Corresponding to collections in :mod:`collections.abc`

.. class:: MutableSet(AbstractSet[T])

A generic version of :class:`collections.abc.MutableSet`.
A generic version of :class:`collections.abc.MutableSet`.

.. deprecated:: 3.9
:class:`collections.abc.MutableSet` now supports ``[]``. See :pep:`585`.

.. class:: Sequence(Reversible[T_co], Collection[T_co])

A generic version of :class:`collections.abc.Sequence`.
A generic version of :class:`collections.abc.Sequence`.

.. deprecated:: 3.9
:class:`collections.abc.Sequence` now supports ``[]``. See :pep:`585`.
Expand All @@ -1301,14 +1301,14 @@ Corresponding to other types in :mod:`collections.abc`

.. class:: Iterable(Generic[T_co])

A generic version of :class:`collections.abc.Iterable`.
A generic version of :class:`collections.abc.Iterable`.

.. deprecated:: 3.9
:class:`collections.abc.Iterable` now supports ``[]``. See :pep:`585`.

.. class:: Iterator(Iterable[T_co])

A generic version of :class:`collections.abc.Iterator`.
A generic version of :class:`collections.abc.Iterator`.

.. deprecated:: 3.9
:class:`collections.abc.Iterator` now supports ``[]``. See :pep:`585`.
Expand Down Expand Up @@ -1353,7 +1353,7 @@ Corresponding to other types in :mod:`collections.abc`

.. class:: Reversible(Iterable[T_co])

A generic version of :class:`collections.abc.Reversible`.
A generic version of :class:`collections.abc.Reversible`.

.. deprecated:: 3.9
:class:`collections.abc.Reversible` now supports ``[]``. See :pep:`585`.
Expand Down

0 comments on commit e4b359d

Please sign in to comment.