mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +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
|
@ -1234,7 +1234,7 @@ PyObject* pysqlite_connection_call(pysqlite_Connection* self, PyObject* args, Py
|
|||
|
||||
_pysqlite_drop_unused_statement_references(self);
|
||||
|
||||
statement = PyObject_New(pysqlite_Statement, &pysqlite_StatementType);
|
||||
statement = PyObject_New(pysqlite_Statement, pysqlite_StatementType);
|
||||
if (!statement) {
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue