https://github.com/python/cpython/commit/030fcc47fb71719f63d5c6f8c68717250ec3d5cb
commit: 030fcc47fb71719f63d5c6f8c68717250ec3d5cb
branch: main
author: Xie Yanbo <[email protected]>
committer: serhiy-storchaka <[email protected]>
date: 2024-04-29T10:59:38Z
summary:

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

files:
M Doc/c-api/typeobj.rst

diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst
index 1105b943325077..a6a2c437ea4e16 100644
--- a/Doc/c-api/typeobj.rst
+++ b/Doc/c-api/typeobj.rst
@@ -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));

_______________________________________________
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