]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-42064: Offset arguments for PyObject_Vectorcall in the _sqlite module (GH-27931)
authorPetr Viktorin <encukou@gmail.com>
Tue, 31 Aug 2021 12:34:44 +0000 (14:34 +0200)
committerGitHub <noreply@github.com>
Tue, 31 Aug 2021 12:34:44 +0000 (14:34 +0200)
commit01dea5f12b31862999217c091399a318f23b460a
tree1b806b91599762b791936115b0852a5f17e813dc
parent001ef4600f5ab2e1d7825ddbc0f253377c234d7e
bpo-42064: Offset arguments for PyObject_Vectorcall in the _sqlite module (GH-27931)

This allows e.g. methods to be called efficiently by providing
space for a "self" argument; see PY_VECTORCALL_ARGUMENTS_OFFSET docs.
Modules/_sqlite/connection.c
Modules/_sqlite/cursor.c