bpo-46874: Speed up sqlite3 user-defined aggregate 'step' method (GH-31604)

This commit is contained in:
Erlend Egeberg Aasland 2022-03-03 14:54:36 +01:00 committed by GitHub
parent 751c9ed801
commit 88567a9970
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 6 deletions

View file

@ -64,6 +64,7 @@ typedef struct {
PyObject *str___conform__;
PyObject *str_executescript;
PyObject *str_finalize;
PyObject *str_step;
PyObject *str_upper;
} pysqlite_state;