summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/module.h
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2022-02-16 15:24:44 (GMT)
committerGitHub <noreply@github.com>2022-02-16 15:24:44 (GMT)
commitb2077117d125925210148294eefee28797b7ff4c (patch)
tree882ab0be1bbfa306c6f0371220947c5fcc8ca848 /Modules/_sqlite/module.h
parentd64f3caebe8f8e31ecd193e0bd25105400153ece (diff)
downloadcpython-b2077117d125925210148294eefee28797b7ff4c.zip
cpython-b2077117d125925210148294eefee28797b7ff4c.tar.gz
cpython-b2077117d125925210148294eefee28797b7ff4c.tar.bz2
bpo-46541: Replace _Py_IDENTIFIER with _Py_ID in sqlite3 (GH-31351)
Diffstat (limited to 'Modules/_sqlite/module.h')
-rw-r--r--Modules/_sqlite/module.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/Modules/_sqlite/module.h b/Modules/_sqlite/module.h
index a248d04..35c6f38 100644
--- a/Modules/_sqlite/module.h
+++ b/Modules/_sqlite/module.h
@@ -58,6 +58,13 @@ typedef struct {
PyTypeObject *PrepareProtocolType;
PyTypeObject *RowType;
PyTypeObject *StatementType;
+
+ /* Pointers to interned strings */
+ PyObject *str___adapt__;
+ PyObject *str___conform__;
+ PyObject *str_executescript;
+ PyObject *str_finalize;
+ PyObject *str_upper;
} pysqlite_state;
extern pysqlite_state pysqlite_global_state;