diff options
author | Emanuele Gaifas <lelegaifax@gmail.com> | 2018-03-10 23:08:31 +0100 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2018-03-11 01:08:31 +0300 |
commit | d7aed4102d2a40c74553240c7f03585624d27aea (patch) | |
tree | f65be332675189f8a73fbfdf543c28a23f96a795 /Modules/_sqlite/module.c | |
parent | c10b288f345aaef66d2c844924b9a576f9ea4f8b (diff) | |
download | cpython-git-d7aed4102d2a40c74553240c7f03585624d27aea.tar.gz |
bpo-27645: Add support for native backup facility of SQLite (GH-4238)
Diffstat (limited to 'Modules/_sqlite/module.c')
-rw-r--r-- | Modules/_sqlite/module.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/_sqlite/module.c b/Modules/_sqlite/module.c index 879c66692b..6befa073dc 100644 --- a/Modules/_sqlite/module.c +++ b/Modules/_sqlite/module.c @@ -323,6 +323,9 @@ static const IntConstantPair _int_constants[] = { #if SQLITE_VERSION_NUMBER >= 3008003 {"SQLITE_RECURSIVE", SQLITE_RECURSIVE}, #endif +#if SQLITE_VERSION_NUMBER >= 3006011 + {"SQLITE_DONE", SQLITE_DONE}, +#endif {(char*)NULL, 0} }; |