-
-
Notifications
You must be signed in to change notification settings - Fork 32k
Improve index for the C API #115172
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
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Feb 8, 2024
serhiy-storchaka
added a commit
that referenced
this issue
Feb 11, 2024
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Feb 11, 2024
…honGH-115173) (cherry picked from commit 573acb3) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
that referenced
this issue
Feb 11, 2024
serhiy-storchaka
added a commit
to serhiy-storchaka/cpython
that referenced
this issue
Feb 11, 2024
…honGH-115173) (cherry picked from commit 573acb3) Co-authored-by: Serhiy Storchaka <[email protected]>
serhiy-storchaka
added a commit
that referenced
this issue
Feb 11, 2024
fsc-eriker
pushed a commit
to fsc-eriker/cpython
that referenced
this issue
Feb 14, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Index entries are added either implicitly by directives like c:function or explicitly by the index directive. And some explicitly added index entries do not match implicitly added index entries. For example:
creates index entry
PyList_GetItem()
, but the function declaration creates index entryPyList_GetItem (C function)
. In result, two entries are not merged.The following PR makes explicit index entries look like automatically generated ones.
Linked PRs
The text was updated successfully, but these errors were encountered: