cpython: b9c4139a1309 (original) (raw)
Mercurial > cpython
changeset 105935:b9c4139a1309
Issue #28985: Update authorizer constants in sqlite3 module Dates and version information from the changelog: * 2006-08-12 (3.3.7) added SQLITE_CREATE_VTABLE, SQLITE_DROP_VTABLE * 2006-10-09 (3.3.8) added SQLITE_FUNCTION * 2009-01-12 (3.6.8) added SQLITE_SAVEPOINT * 2014-02-03 (3.8.3) added SQLITE_RECURSIVE Patch by Dingyuan Wang. [#28985]
Berker Peksag berker.peksag@gmail.com | |
---|---|
date | Mon, 02 Jan 2017 06:38:10 +0300 |
parents | 6ca0f3fcf82f |
children | 803c3c21c3bc d510213532af |
files | Misc/NEWS Modules/_sqlite/module.c |
diffstat | 2 files changed, 16 insertions(+), 0 deletions(-)[+] [-] Misc/NEWS 3 Modules/_sqlite/module.c 13 |
line wrap: on
line diff
--- a/Misc/NEWS +++ b/Misc/NEWS @@ -208,6 +208,9 @@ Core and Builtins Library ------- +- Issue #28985: Update authorizer constants in sqlite3 module.
- Issue #29094: Offsets in a ZIP file created with extern file object and modes "w" and "x" now are relative to the start of the file.
--- a/Modules/_sqlite/module.c +++ b/Modules/_sqlite/module.c @@ -303,6 +303,19 @@ static const IntConstantPair _int_consta #if SQLITE_VERSION_NUMBER >= 3003000 {"SQLITE_ANALYZE", SQLITE_ANALYZE}, #endif +#if SQLITE_VERSION_NUMBER >= 3003007
+#endif +#if SQLITE_VERSION_NUMBER >= 3003008
+#endif +#if SQLITE_VERSION_NUMBER >= 3006008