bpo-40959: Remove unused declarations from sqlite3 headers (GH-20828)

This commit is contained in:
Erlend Egeberg Aasland 2021-01-06 01:56:05 +01:00 committed by GitHub
parent ddb5e11683
commit 203b2493ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 0 additions and 16 deletions

View file

@ -46,7 +46,6 @@ typedef struct
extern PyTypeObject *pysqlite_StatementType;
int pysqlite_statement_create(pysqlite_Statement* self, pysqlite_Connection* connection, PyObject* sql);
void pysqlite_statement_dealloc(pysqlite_Statement* self);
int pysqlite_statement_bind_parameter(pysqlite_Statement* self, int pos, PyObject* parameter);
void pysqlite_statement_bind_parameters(pysqlite_Statement* self, PyObject* parameters);