diff options
| author | Emanuele Gaifas <lelegaifax@gmail.com> | 2018-03-10 22:08:31 (GMT) |
|---|---|---|
| committer | Berker Peksag <berker.peksag@gmail.com> | 2018-03-10 22:08:31 (GMT) |
| commit | d7aed4102d2a40c74553240c7f03585624d27aea (patch) | |
| tree | f65be332675189f8a73fbfdf543c28a23f96a795 /Modules/_sqlite/module.c | |
| parent | c10b288f345aaef66d2c844924b9a576f9ea4f8b (diff) | |
| download | cpython-d7aed4102d2a40c74553240c7f03585624d27aea.zip cpython-d7aed4102d2a40c74553240c7f03585624d27aea.tar.gz cpython-d7aed4102d2a40c74553240c7f03585624d27aea.tar.bz2 | |
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 879c666..6befa07 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} }; |
