diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-04-02 00:06:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-02 00:06:30 (GMT) |
commit | d104a786fff5980360056d908a2d952b42306171 (patch) | |
tree | f61a86d8ff1cb7a9c262612ea7e8a2fb70fa611c /Doc | |
parent | 244fa236e422020ad1a0c1be8d5b53496bd3d0f2 (diff) | |
download | cpython-d104a786fff5980360056d908a2d952b42306171.zip cpython-d104a786fff5980360056d908a2d952b42306171.tar.gz cpython-d104a786fff5980360056d908a2d952b42306171.tar.bz2 |
bpo-43677: Fix a minor error in Doc/howto/descriptor.rst (GH-25123) (#25140)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/descriptor.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index 032d080..c7035ba 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 |