diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2021-01-06 01:02:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-06 02:02:43 +0200 |
commit | cf0b23908cc902ac38cd83dd7ca5afdf89e1543b (patch) | |
tree | 213330fcd0db5954b3937e913a168fc7f68ebf4b /Modules/_sqlite/util.h | |
parent | c7f8d3caf0b10c19cd46b1b334a98628eac15672 (diff) | |
download | cpython-cf0b23908cc902ac38cd83dd7ca5afdf89e1543b.tar.gz cpython-cf0b23908cc902ac38cd83dd7ca5afdf89e1543b.zip |
bpo-40810: Require SQLite 3.7.15 (GH-24106)
Diffstat (limited to 'Modules/_sqlite/util.h')
-rw-r--r-- | Modules/_sqlite/util.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Modules/_sqlite/util.h b/Modules/_sqlite/util.h index c5a220e9b0a..cff31cda957 100644 --- a/Modules/_sqlite/util.h +++ b/Modules/_sqlite/util.h @@ -39,10 +39,4 @@ int _pysqlite_seterror(sqlite3* db, sqlite3_stmt* st); sqlite_int64 _pysqlite_long_as_int64(PyObject * value); -#if SQLITE_VERSION_NUMBER >= 3007014 -#define SQLITE3_CLOSE sqlite3_close_v2 -#else -#define SQLITE3_CLOSE sqlite3_close -#endif - #endif |