mirror of
https://github.com/python/cpython.git
synced 2025-10-07 07:31:46 +00:00
bpo-41861: Convert _sqlite3 RowType and StatementType to heap types (GH-22444)
This commit is contained in:
parent
fa7ce08017
commit
9031bd4fa4
9 changed files with 72 additions and 119 deletions
|
@ -46,7 +46,7 @@ static PyType_Slot type_slots[] = {
|
|||
static PyType_Spec type_spec = {
|
||||
.name = MODULE_NAME ".PrepareProtocol",
|
||||
.basicsize = sizeof(pysqlite_PrepareProtocol),
|
||||
.flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE,
|
||||
.flags = Py_TPFLAGS_DEFAULT,
|
||||
.slots = type_slots,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue