From: David Greaves Date: Wed, 20 Dec 2023 09:51:16 +0000 (+0000) Subject: Fix typo in collections.abc docs example (#113310) X-Git-Tag: v3.13.0a3~321 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22b8945d7678be86f801ca54f004a5dba2006835;p=thirdparty%2FPython%2Fcpython.git Fix typo in collections.abc docs example (#113310) Calling the instance reference arg for the __next__ method, "next", seems misleading as it would normally just be "self" --- diff --git a/Doc/library/collections.abc.rst b/Doc/library/collections.abc.rst index e0c72ff9249e..582bb18f752b 100644 --- a/Doc/library/collections.abc.rst +++ b/Doc/library/collections.abc.rst @@ -87,7 +87,7 @@ the required methods (unless those methods have been set to class E: def __iter__(self): ... - def __next__(next): ... + def __next__(self): ... .. doctest::