File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 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[] = {
267267static PyType_Spec pysqlite_NodeType_spec = {
268268 .name = MODULE_NAME ".Node" ,
269269 .basicsize = sizeof (pysqlite_Node ),
270- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE ,
270+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE ,
271271 .slots = pysqlite_NodeType_slots ,
272272};
273273PyTypeObject * pysqlite_NodeType = NULL ;
@@ -291,7 +291,7 @@ static PyType_Slot pysqlite_CacheType_slots[] = {
291291static PyType_Spec pysqlite_CacheType_spec = {
292292 .name = MODULE_NAME ".Cache" ,
293293 .basicsize = sizeof (pysqlite_Cache ),
294- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE ,
294+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE ,
295295 .slots = pysqlite_CacheType_slots ,
296296};
297297PyTypeObject * pysqlite_CacheType = NULL ;
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ static PyType_Slot type_slots[] = {
4646static PyType_Spec type_spec = {
4747 .name = MODULE_NAME ".PrepareProtocol" ,
4848 .basicsize = sizeof (pysqlite_PrepareProtocol ),
49- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE ,
49+ .flags = Py_TPFLAGS_DEFAULT ,
5050 .slots = type_slots ,
5151};
5252
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ static PyType_Slot row_slots[] = {
232232static PyType_Spec row_spec = {
233233 .name = MODULE_NAME ".Row" ,
234234 .basicsize = sizeof (pysqlite_Row ),
235- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_HEAPTYPE ,
235+ .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE ,
236236 .slots = row_slots ,
237237};
238238
Original file line number Diff line number Diff line change @@ -475,7 +475,7 @@ static PyType_Slot stmt_slots[] = {
475475static PyType_Spec stmt_spec = {
476476 .name = MODULE_NAME ".Statement" ,
477477 .basicsize = sizeof (pysqlite_Statement ),
478- .flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HEAPTYPE ,
478+ .flags = Py_TPFLAGS_DEFAULT ,
479479 .slots = stmt_slots ,
480480};
481481PyTypeObject * pysqlite_StatementType = NULL ;
You can’t perform that action at this time.
0 commit comments