File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ static PyType_Slot pysqlite_NodeType_slots[] = {
267
267
static PyType_Spec pysqlite_NodeType_spec = {
268
268
.name = MODULE_NAME ".Node" ,
269
269
.basicsize = sizeof (pysqlite_Node ),
270
- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE ,
270
+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE ,
271
271
.slots = pysqlite_NodeType_slots ,
272
272
};
273
273
PyTypeObject * pysqlite_NodeType = NULL ;
@@ -291,7 +291,7 @@ static PyType_Slot pysqlite_CacheType_slots[] = {
291
291
static PyType_Spec pysqlite_CacheType_spec = {
292
292
.name = MODULE_NAME ".Cache" ,
293
293
.basicsize = sizeof (pysqlite_Cache ),
294
- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE ,
294
+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE ,
295
295
.slots = pysqlite_CacheType_slots ,
296
296
};
297
297
PyTypeObject * pysqlite_CacheType = NULL ;
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ static PyType_Slot type_slots[] = {
46
46
static PyType_Spec type_spec = {
47
47
.name = MODULE_NAME ".PrepareProtocol" ,
48
48
.basicsize = sizeof (pysqlite_PrepareProtocol ),
49
- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE ,
49
+ .flags = Py_TPFLAGS_DEFAULT ,
50
50
.slots = type_slots ,
51
51
};
52
52
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ static PyType_Slot row_slots[] = {
232
232
static PyType_Spec row_spec = {
233
233
.name = MODULE_NAME ".Row" ,
234
234
.basicsize = sizeof (pysqlite_Row ),
235
- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE ,
235
+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE ,
236
236
.slots = row_slots ,
237
237
};
238
238
Original file line number Diff line number Diff line change @@ -475,7 +475,7 @@ static PyType_Slot stmt_slots[] = {
475
475
static PyType_Spec stmt_spec = {
476
476
.name = MODULE_NAME ".Statement" ,
477
477
.basicsize = sizeof (pysqlite_Statement ),
478
- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE ,
478
+ .flags = Py_TPFLAGS_DEFAULT ,
479
479
.slots = stmt_slots ,
480
480
};
481
481
PyTypeObject * pysqlite_StatementType = NULL ;
You can’t perform that action at this time.
0 commit comments