index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_sqlite
/
module.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-108494: Argument Clinic: fix support of Limited C API (GH-108536)
Serhiy Storchaka
2023-08-28
1
-1/+1
*
gh-93057: Deprecate positional use of optional sqlite3.connect() params (#107...
Erlend E. Aasland
2023-08-15
1
-0/+11
*
gh-107938: Synchonise the signature of of sqlite3.connect and sqlite3.Connect...
Erlend E. Aasland
2023-08-14
1
-17/+8
*
gh-106320: Remove private _PyImport C API functions (#106383)
Victor Stinner
2023-07-03
1
-0/+6
*
gh-105875: Require SQLite 3.15.2 or newer (#105876)
Erlend E. Aasland
2023-06-18
1
-40/+4
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-103489: Add get/set config methods to sqlite3.Connection (#103506)
Erlend E. Aasland
2023-04-26
1
-0/+43
*
gh-83638: Add sqlite3.Connection.autocommit for PEP 249 compliant behaviour (...
Erlend E. Aasland
2022-11-12
1
-1/+6
*
gh-95132: Correctly relay *args and **kwds from sqlite3.connect to factory (#...
Erlend Egeberg Aasland
2022-07-23
1
-36/+33
*
gh-90016: Reword sqlite3 adapter/converter docs (#93095)
Erlend Egeberg Aasland
2022-06-25
1
-6/+6
*
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka
2022-06-14
1
-7/+1
*
gh-93370: Deprecate sqlite3.version and sqlite3.version_info (#93482)
Kalyan
2022-06-07
1
-1/+1
*
gh-93044: No longer convert the database argument of sqlite3.connect() to byt...
Serhiy Storchaka
2022-05-21
1
-3/+2
*
gh-92547: Remove deprecated sqlite3 features (#92548)
Erlend Egeberg Aasland
2022-05-16
1
-31/+0
*
gh-69093: Expose sqlite3.Blob as a class (GH-91550)
Jelle Zijlstra
2022-04-15
1
-0/+1
*
gh-69093: Support basic incremental I/O to blobs in `sqlite3` (GH-30680)
Erlend Egeberg Aasland
2022-04-15
1
-1/+5
*
gh-79097: Add support for aggregate window functions in sqlite3 (GH-20903)
Erlend Egeberg Aasland
2022-04-12
1
-0/+4
*
bpo-46878: Purge 'non-standard' from sqlite3 docstrings (GH-31612)
Erlend Egeberg Aasland
2022-03-08
1
-10/+13
*
bpo-46874: Speed up sqlite3 user-defined aggregate 'step' method (GH-31604)
Erlend Egeberg Aasland
2022-03-03
1
-0/+2
*
bpo-46541: Remove unneeded visits from sqlite3 (GH-31609)
Erlend Egeberg Aasland
2022-02-28
1
-7/+0
*
bpo-46541: Replace _Py_IDENTIFIER with _Py_ID in sqlite3 (GH-31351)
Erlend Egeberg Aasland
2022-02-16
1
-5/+32
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-0/+2
*
bpo-45613: Set `sqlite3.threadsafety` dynamically (GH-29227)
Erlend Egeberg Aasland
2021-11-03
1
-0/+30
*
bpo-24139: Add support for SQLite extended result codes (GH-28076)
Erlend Egeberg Aasland
2021-11-02
1
-1/+126
*
bpo-42064: Adapt `sqlite3` to multi-phase init (PEP 489) (GH-29234)
Erlend Egeberg Aasland
2021-11-02
1
-20/+99
*
bpo-45243: Add support for setting/getting `sqlite3` connection limits (GH-28...
Erlend Egeberg Aasland
2021-11-01
1
-0/+15
*
bpo-45634: Don't combine error checks when adding `sqlite3` int constants (GH...
Erlend Egeberg Aasland
2021-10-31
1
-41/+48
*
bpo-42064: Convert `sqlite3` global state to module state (GH-29073)
Erlend Egeberg Aasland
2021-10-27
1
-14/+7
*
bpo-16379: expose SQLite error codes and error names in `sqlite3` (GH-27786)
Erlend Egeberg Aasland
2021-08-30
1
-2/+73
*
bpo-42064: Optimise `sqlite3` state access, part 1 (GH-27273)
Erlend Egeberg Aasland
2021-07-29
1
-2/+3
*
bpo-42064: Finalise establishing sqlite3 global state (GH-27155)
Erlend Egeberg Aasland
2021-07-20
1
-14/+10
*
bpo-42064: Move `sqlite3` exceptions to global state, part 2 of 2 (GH-26884)
Erlend Egeberg Aasland
2021-07-14
1
-36/+19
*
bpo-42064: Move `sqlite3` exceptions to global state, part 1 of 2 (GH-26745)
Erlend Egeberg Aasland
2021-06-23
1
-17/+19
*
bpo-40956: Convert sqlite3.connect and sqlite3.Connection.__init__ to AC (GH-...
Erlend Egeberg Aasland
2021-06-20
1
-42/+40
*
bpo-42064: Move sqlite3 types to global state (GH-26537)
Erlend Egeberg Aasland
2021-06-15
1
-16/+18
*
bpo-42862: Use functools.lru_cache iso. _sqlite.Cache in sqlite3 module (GH-2...
Erlend Egeberg Aasland
2021-06-03
1
-2/+29
*
bpo-43434: Clean up sqlite3.connect() after GH-25818 (GH-25823)
Erlend Egeberg Aasland
2021-05-02
1
-8/+1
*
bpo-43434: Move sqlite3.connect audit events to sqlite3.Connection.__init__ (...
Erlend Egeberg Aasland
2021-05-02
1
-9/+0
*
bpo-43762: Add audit events for loading of sqlite3 extensions (GH-25246)
Erlend Egeberg Aasland
2021-04-26
1
-0/+8
*
bpo-43505: Explicitly initialize and shutdown sqlite3 (GH-25404)
Erlend Egeberg Aasland
2021-04-14
1
-11/+14
*
bpo-40810: Require SQLite 3.7.15 (GH-24106)
Erlend Egeberg Aasland
2021-01-06
1
-4/+4
*
bpo-1635741: sqlite3 uses Py_NewRef/Py_XNewRef (GH-23170)
Erlend Egeberg Aasland
2020-12-27
1
-10/+3
*
bpo-42264: Deprecate sqlite3.OptimizedUnicode (GH-23163)
Erlend Egeberg Aasland
2020-11-17
1
-9/+0
*
bpo-1635741: _sqlite3 uses PyModule_AddObjectRef() (GH-23148)
Erlend Egeberg Aasland
2020-11-04
1
-12/+13
*
bpo-40956: Convert _sqlite3 module level functions to Argument Clinic (GH-22484)
Erlend Egeberg Aasland
2020-10-31
1
-70/+91
*
bpo-42021: Fix possible ref leaks during _sqlite3 module init (GH-22673)
Erlend Egeberg Aasland
2020-10-15
1
-126/+84
*
bpo-41861: Convert _sqlite3 CursorType and ConnectionType to heap types (GH-2...
Erlend Egeberg Aasland
2020-10-01
1
-5/+5
*
bpo-41861: Convert _sqlite3 RowType and StatementType to heap types (GH-22444)
Erlend Egeberg Aasland
2020-10-01
1
-3/+3
*
bpo-41861: Convert _sqlite3 PrepareProtocolType to heap type (GH-22428)
Erlend Egeberg Aasland
2020-09-28
1
-3/+3
*
bpo-41861: Convert _sqlite3 cache and node static types to heap types (GH-22417)
Erlend Egeberg Aasland
2020-09-27
1
-1/+1
[next]