From: smelnikov <13030121+smelnikov@users.noreply.github.com> Date: Tue, 21 Jan 2025 09:22:13 +0000 (+0400) Subject: Docs: fix typo in `Doc/howto/mro.rst` (GH-129095) X-Git-Tag: v3.14.0a5~327 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da310d209a6af45e5e1ea48a873f1d14be471a09;p=thirdparty%2FPython%2Fcpython.git Docs: fix typo in `Doc/howto/mro.rst` (GH-129095) --- diff --git a/Doc/howto/mro.rst b/Doc/howto/mro.rst index 46db516e16da..0872bedcd3a2 100644 --- a/Doc/howto/mro.rst +++ b/Doc/howto/mro.rst @@ -398,7 +398,7 @@ with inheritance diagram We see that class G inherits from F and E, with F *before* E: therefore we would expect the attribute *G.remember2buy* to be inherited by -*F.rembermer2buy* and not by *E.remember2buy*: nevertheless Python 2.2 +*F.remember2buy* and not by *E.remember2buy*: nevertheless Python 2.2 gives >>> G.remember2buy # doctest: +SKIP