From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 12 Jan 2024 23:06:14 +0000 (+0100) Subject: [3.11] datamodel: Fix a typo in ``object.__init_subclass__`` (GH-111599) (#114005) X-Git-Tag: v3.11.8~162 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd8fd2292e7ad029d030eff88eda7d14d92dbdf7;p=thirdparty%2FPython%2Fcpython.git [3.11] datamodel: Fix a typo in ``object.__init_subclass__`` (GH-111599) (#114005) datamodel: Fix a typo in ``object.__init_subclass__`` (GH-111599) (cherry picked from commit a47353d587b78bb5501b21343d9bca739c49a43a) Co-authored-by: InSync <122007197+InSyncWithFoo@users.noreply.github.com> --- diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index efa24acb5db5..1f9bb82c8db8 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -2286,7 +2286,7 @@ class defining the method. this method is implicitly converted to a class method. Keyword arguments which are given to a new class are passed to - the parent's class ``__init_subclass__``. For compatibility with + the parent class's ``__init_subclass__``. For compatibility with other classes using ``__init_subclass__``, one should take out the needed keyword arguments and pass the others over to the base class, as in::