https://github.com/python/cpython/commit/8c611e12bc735f863d58cf416f293ddd9811021d
commit: 8c611e12bc735f863d58cf416f293ddd9811021d
branch: main
author: sobolevn <[email protected]>
committer: hugovk <[email protected]>
date: 2026-05-01T19:37:14Z
summary:

Fix source link in `Doc/howto/descriptor.rst` (#149215)

files:
M Doc/howto/descriptor.rst

diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst
index 9d5a9ac8b718cb..07a405837d9229 100644
--- a/Doc/howto/descriptor.rst
+++ b/Doc/howto/descriptor.rst
@@ -1640,7 +1640,7 @@ by member descriptors:
     class Member:
 
         def __init__(self, name, clsname, offset):
-            'Emulate PyMemberDef in Include/structmember.h'
+            'Emulate PyMemberDef in Include/descrobject.h'
             # Also see descr_new() in Objects/descrobject.c
             self.name = name
             self.clsname = clsname

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to