bpo-42064: Offset arguments for PyObject_Vectorcall in the _sqlite module #27931
Conversation
This allows e.g. methods to be called efficiently by providing space for a "self" argument; see PY_VECTORCALL_ARGUMENTS_OFFSET docs.
Out of curiosity, How efficient? is there any benchmark? |
I'm not aware of one, but the docs say this is encouraged :) |
shihai1991
reviewed
Aug 24, 2021
LGTM, thanks for spotting this! This makes sense for the collation callback, but I can't see how the calls in |
erlend-aasland
suggested changes
Aug 24, 2021
Modules/_sqlite/connection.c
Outdated
PyObject *inner = PyObject_Vectorcall( | ||
lru_cache, args + 1, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL); |
Could you please break lines according to PEP 7? I'm striving to keep all sqlite3
changes PEP 7 compliant :)
Ditto for the other calls.
That is, either:
Suggested change
PyObject *inner = PyObject_Vectorcall( | |
lru_cache, args + 1, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL); | |
PyObject *inner = PyObject_Vectorcall(lru_cache, args + 1, | |
1 | PY_VECTORCALL_ARGUMENTS_OFFSET, | |
NULL); |
or:
Suggested change
PyObject *inner = PyObject_Vectorcall( | |
lru_cache, args + 1, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL); | |
size_t nargs = 1 | PY_VECTORCALL_ARGUMENTS_OFFSET; | |
PyObject *inner = PyObject_Vectorcall(lru_cache, args + 1, nargs, NULL); |
erlend-aasland
approved these changes
Aug 31, 2021
Thanks for the reviews! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
This weird mechanism allows e.g. methods to be called efficiently by providing space for a "self" argument; see PY_VECTORCALL_ARGUMENTS_OFFSET docs.
https://bugs.python.org/issue42064
The text was updated successfully, but these errors were encountered: