We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7a5be5 commit 52fb9f1Copy full SHA for 52fb9f1
Doc/library/abc.rst
@@ -18,10 +18,10 @@ see the PEP for why this was added to Python. (See also :pep:`3141` and the
18
:mod:`numbers` module regarding a type hierarchy for numbers based on ABCs.)
19
20
The :mod:`collections` module has some concrete classes that derive from
21
-ABCs; these can, of course, be further derived. In addition the
+ABCs; these can, of course, be further derived. In addition, the
22
:mod:`collections.abc` submodule has some ABCs that can be used to test whether
23
-a class or instance provides a particular interface, for example, is it
24
-hashable or a mapping.
+a class or instance provides a particular interface, for example, if it is
+hashable or if it is a mapping.
25
26
27
This module provides the metaclass :class:`ABCMeta` for defining ABCs and
0 commit comments