From b6bf057480c7e94e0a8fc9a8ec165c21c3a08a73 Mon Sep 17 00:00:00 2001 From: Yavor Konstantinov Date: Sun, 5 May 2019 20:42:15 -0700 Subject: [PATCH] Fix documentation typo in ctypes.rst This addresses bpo-36799. There were two mispellings in the ctypes.rst file within the python documentation. --- Doc/library/ctypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst index baab0de8f8ac5e5..1c60b4bbda13ecd 100644 --- a/Doc/library/ctypes.rst +++ b/Doc/library/ctypes.rst @@ -2376,7 +2376,7 @@ other data types containing pointer type fields. and so on). Later assignments to the :attr:`_fields_` class variable will raise an AttributeError. - It is possible to defined sub-subclasses of structure types, they inherit + It is possible to define sub-subclasses of structure types, they inherit the fields of the base class plus the :attr:`_fields_` defined in the sub-subclass, if any. @@ -2424,7 +2424,7 @@ other data types containing pointer type fields. td.lptdesc = POINTER(some_type) td.u.lptdesc = POINTER(some_type) - It is possible to defined sub-subclasses of structures, they inherit the + It is possible to define sub-subclasses of structures, they inherit the fields of the base class. If the subclass definition has a separate :attr:`_fields_` variable, the fields specified in this are appended to the fields of the base class.