mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-43269: Clean up sqlite3 file scope (GH-24578)
This commit is contained in:
parent
d439fb304c
commit
bf838a6e7e
6 changed files with 37 additions and 19 deletions
|
@ -368,7 +368,8 @@ void pysqlite_statement_mark_dirty(pysqlite_Statement* self)
|
|||
self->in_use = 1;
|
||||
}
|
||||
|
||||
void pysqlite_statement_dealloc(pysqlite_Statement* self)
|
||||
static void
|
||||
pysqlite_statement_dealloc(pysqlite_Statement *self)
|
||||
{
|
||||
PyTypeObject *tp = Py_TYPE(self);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue