From 3a6714f29e3a8b04af4f9eefeed258c3c3a03477 Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Wed, 20 Sep 2023 20:53:10 +0200 Subject: [PATCH] PEP 443: Fix collections.abc example (#3131) --- peps/pep-0443.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peps/pep-0443.rst b/peps/pep-0443.rst index fa800e692..5e0d8fc18 100644 --- a/peps/pep-0443.rst +++ b/peps/pep-0443.rst @@ -226,7 +226,7 @@ implementations on the generic function or when user code calls it is possible to create a situation with ambiguous dispatch, for instance:: - >>> from collections import Iterable, Container + >>> from collections.abc import Iterable, Container >>> class P: ... pass >>> Iterable.register(P)