Fix typo in Doc/c-api/typeobj.rst (GH-118377)

This commit is contained in:
Xie Yanbo 2024-04-29 18:59:38 +08:00 committed by GitHub
parent 375c94c75d
commit 030fcc47fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1381,7 +1381,7 @@ and :c:data:`PyType_Type` effectively act as defaults.)
Py_VISIT(Py_TYPE(self));
It is only needed since Python 3.9. To support Python 3.8 and older, this
line must be conditionnal::
line must be conditional::
#if PY_VERSION_HEX >= 0x03090000
Py_VISIT(Py_TYPE(self));