-
-
Notifications
You must be signed in to change notification settings - Fork 32k
Typo in Macro/C/Python Type Table #112671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Thank you for your report @ecsalina. Do you mind to create a PR? |
serhiy-storchaka
pushed a commit
that referenced
this issue
Dec 4, 2023
Replace Py_T_STRING_INLINE with Py_T_STRING_INPLACE
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Dec 4, 2023
Replace Py_T_STRING_INLINE with Py_T_STRING_INPLACE (cherry picked from commit a8ce149) Co-authored-by: Amioplk <[email protected]>
serhiy-storchaka
pushed a commit
that referenced
this issue
Dec 4, 2023
Replace Py_T_STRING_INLINE with Py_T_STRING_INPLACE (cherry picked from commit a8ce149) Co-authored-by: Amioplk <[email protected]>
aisk
pushed a commit
to aisk/cpython
that referenced
this issue
Feb 11, 2024
Replace Py_T_STRING_INLINE with Py_T_STRING_INPLACE
Glyphack
pushed a commit
to Glyphack/cpython
that referenced
this issue
Sep 2, 2024
Replace Py_T_STRING_INLINE with Py_T_STRING_INPLACE
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
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 forPy_T_STRING_INPLACE
. This bug would be resolved by substitutingPy_T_STRING_INLINE
withPy_T_STRING_INPLACE
.Linked PRs
The text was updated successfully, but these errors were encountered: