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

@ -62,11 +62,6 @@ typedef struct
extern PyTypeObject *pysqlite_NodeType;
extern PyTypeObject *pysqlite_CacheType;
int pysqlite_node_init(pysqlite_Node* self, PyObject* args, PyObject* kwargs);
void pysqlite_node_dealloc(pysqlite_Node* self);
int pysqlite_cache_init(pysqlite_Cache* self, PyObject* args, PyObject* kwargs);
void pysqlite_cache_dealloc(pysqlite_Cache* self);
PyObject* pysqlite_cache_get(pysqlite_Cache* self, PyObject* args);
int pysqlite_cache_setup_types(PyObject *module);