mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +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
|
@ -23,12 +23,15 @@
|
|||
|
||||
#include "prepare_protocol.h"
|
||||
|
||||
int pysqlite_prepare_protocol_init(pysqlite_PrepareProtocol* self, PyObject* args, PyObject* kwargs)
|
||||
static int
|
||||
pysqlite_prepare_protocol_init(pysqlite_PrepareProtocol *self, PyObject *args,
|
||||
PyObject *kwargs)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void pysqlite_prepare_protocol_dealloc(pysqlite_PrepareProtocol* self)
|
||||
static void
|
||||
pysqlite_prepare_protocol_dealloc(pysqlite_PrepareProtocol *self)
|
||||
{
|
||||
PyTypeObject *tp = Py_TYPE(self);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue