diff options
Diffstat (limited to 'Modules/_sqlite/row.h')
-rw-r--r-- | Modules/_sqlite/row.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/_sqlite/row.h b/Modules/_sqlite/row.h index c6e083c..b92225b 100644 --- a/Modules/_sqlite/row.h +++ b/Modules/_sqlite/row.h @@ -30,10 +30,10 @@ typedef struct _Row PyObject_HEAD PyObject* data; PyObject* description; -} Row; +} pysqlite_Row; -extern PyTypeObject RowType; +extern PyTypeObject pysqlite_RowType; -int row_setup_types(void); +int pysqlite_row_setup_types(void); #endif |