We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebbe803 commit 3fe6148Copy full SHA for 3fe6148
Doc/library/typing.rst
@@ -406,10 +406,10 @@ Initially :pep:`484` defined Python static type system as using
406
a class ``B`` is expected if and only if ``A`` is a subclass of ``B``.
407
408
This requirement previously also applied to abstract base classes, such as
409
-:class:`Iterable`. The problem with this approach is that a class had
+:class:`~collections.abc.Iterable`. The problem with this approach is that a class had
410
to be explicitly marked to support them, which is unpythonic and unlike
411
what one would normally do in idiomatic dynamically typed Python code.
412
-For example, this conforms to the :pep:`484`::
+For example, this conforms to :pep:`484`::
413
414
from collections.abc import Sized, Iterable, Iterator
415
0 commit comments