Fix a typo in c-api/typeobj.rst (#132317)

This commit is contained in:
Yongzi Li 2025-04-13 15:18:58 +08:00 committed by GitHub
parent 03b18e0d8c
commit f69b344e09
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -611,7 +611,7 @@ and :c:data:`PyType_Type` effectively act as defaults.)
Note that the :c:member:`~PyVarObject.ob_size` field may later be used for
other purposes. For example, :py:type:`int` instances use the bits of
:c:member:`~PyVarObject.ob_size` in an implementation-defined
way; the underlying storage and its size should be acessed using
way; the underlying storage and its size should be accessed using
:c:func:`PyLong_Export`.
.. note::