-
-
Notifications
You must be signed in to change notification settings - Fork 32.8k
Closed
Labels
Description
The (*) footnote to the table in this section of the documentation has a typo. It says:
with Py_T_STRING_INLINE the string is stored directly in the structure
but it seems like it should be:
with Py_T_STRING_INPLACE the string is stored directly in the structure
based on what the (*) is referencing in the table. A quick search of the CPython repo shows no results for Py_T_STRING_INLINE
(except for this documentation) and many results for Py_T_STRING_INPLACE
. This bug would be resolved by substituting Py_T_STRING_INLINE
with Py_T_STRING_INPLACE
.