diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-03-13 15:33:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-13 15:33:39 (GMT) |
commit | 2256a2876b5214a5a7492bf78bd86cf8beb690bf (patch) | |
tree | 6cd58f558204fbf45306c2734abeb784cdcf9c3a /Modules/_sqlite/module.h | |
parent | 75048c8a38005845f10f8cb1dd33a31e0052cae0 (diff) | |
download | cpython-2256a2876b5214a5a7492bf78bd86cf8beb690bf.zip cpython-2256a2876b5214a5a7492bf78bd86cf8beb690bf.tar.gz cpython-2256a2876b5214a5a7492bf78bd86cf8beb690bf.tar.bz2 |
bpo-43444: Move sqlite3 MODULE_NAME from setup.py to module.h (GH-24801)
Diffstat (limited to 'Modules/_sqlite/module.h')
-rw-r--r-- | Modules/_sqlite/module.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/_sqlite/module.h b/Modules/_sqlite/module.h index 3185ec9..9aede92 100644 --- a/Modules/_sqlite/module.h +++ b/Modules/_sqlite/module.h @@ -27,6 +27,7 @@ #include "Python.h" #define PYSQLITE_VERSION "2.6.0" +#define MODULE_NAME "sqlite3" extern PyObject* pysqlite_Error; extern PyObject* pysqlite_Warning; |