8000 gh-133395: add option for extension modules to specialize BINARY_OP/SUBSCR, apply to arrays by iritkatriel · Pull Request #133396 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-133395: add option for extension modules to specialize BINARY_OP/SUBSCR, apply to arrays #133396

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

Merged
merged 22 commits into from
May 5, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove unused
  • Loading branch information
iritkatriel committed May 5, 2025
commit fd24d7b8bddd377a85df269ee66c25f384471ebe
2 changes: 0 additions & 2 deletions Include/object.h
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,6 @@ typedef int (*objobjproc)(PyObject *, PyObject *);
typedef int (*visitproc)(PyObject *, void *);
typedef int (*traverseproc)(PyObject *, visitproc, void *);

struct _PyBinaryOpSpecializationDescr;
typedef int (*binopspecfunc)(PyObject *lhs, PyObject *rhs, int oparg, struct _PyBinaryOpSpecializationDescr* descr);

typedef void (*freefunc)(void *);
typedef void (*destructor)(PyObject *);
Expand Down
0