commit | 9031bd4fa42dbb0f25aee9286154ad4bf60df3f8 | [log] [tgz] |
---|---|---|
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | Thu Oct 01 15:24:31 2020 +0200 |
committer | GitHub <noreply@github.com> | Thu Oct 01 15:24:31 2020 +0200 |
tree | ec8661b20d139b51b2d60e512502cbbe804d36a0 | |
parent | fa7ce080175f65d678a7d5756c94f82887fc9803 [diff] [blame] |
bpo-41861: Convert _sqlite3 RowType and StatementType to heap types (GH-22444)
diff --git a/Modules/_sqlite/row.h b/Modules/_sqlite/row.h index 4ad506f..2dac41e 100644 --- a/Modules/_sqlite/row.h +++ b/Modules/_sqlite/row.h
@@ -33,8 +33,8 @@ PyObject* description; } pysqlite_Row; -extern PyTypeObject pysqlite_RowType; +extern PyTypeObject *pysqlite_RowType; -int pysqlite_row_setup_types(void); +int pysqlite_row_setup_types(PyObject *module); #endif