From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 2 Apr 2021 00:06:30 +0000 (-0700) Subject: bpo-43677: Fix a minor error in Doc/howto/descriptor.rst (GH-25123) (#25140) X-Git-Tag: v3.9.3~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d104a786fff5980360056d908a2d952b42306171;p=thirdparty%2FPython%2Fcpython.git bpo-43677: Fix a minor error in Doc/howto/descriptor.rst (GH-25123) (#25140) --- diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index 032d08009f44..c7035bad4b6f 100644 --- a/Doc/howto/descriptor.rst +++ b/Doc/howto/descriptor.rst @@ -1054,7 +1054,7 @@ roughly equivalent to: .. testcode:: class MethodType: - "Emulate Py_MethodType in Objects/classobject.c" + "Emulate PyMethod_Type in Objects/classobject.c" def __init__(self, func, obj): self.__func__ = func