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
/
connection.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-27334: Fix reference leak introduced by GH-26202 (GH-27942)
Erlend Egeberg Aasland
2021-08-25
1
-0/+1
*
bpo-27334: roll back transaction if sqlite3 context manager fails to commit (...
Erlend Egeberg Aasland
2021-08-25
1
-7/+21
*
bpo-42064: Pass module state to `sqlite3` UDF callbacks (GH-27456)
Erlend Egeberg Aasland
2021-08-24
1
-31/+58
*
bpo-44079: Strip superfluous statement cache from sqlite3.Connection (GH-25998)
Erlend Egeberg Aasland
2021-08-18
1
-85/+17
*
bpo-44859: Improve error handling in sqlite3 and and raise more accurate exce...
Serhiy Storchaka
2021-08-08
1
-6/+8
*
bpo-44839: Raise more specific errors in sqlite3 (GH-27613)
Serhiy Storchaka
2021-08-06
1
-36/+31
*
bpo-44822: Don't truncate `str`s with embedded NULL chars returned by `sqlite...
Erlend Egeberg Aasland
2021-08-05
1
-3/+10
*
bpo-31746: Fix broken call in GH-27431 (GH-27464)
Erlend Egeberg Aasland
2021-07-29
1
-1/+1
*
bpo-31746: Prevent segfaults when sqlite3.Connection is uninitialised (GH-27431)
Erlend Egeberg Aasland
2021-07-29
1
-7/+23
*
bpo-42064: Optimise `sqlite3` state access, part 1 (GH-27273)
Erlend Egeberg Aasland
2021-07-29
1
-18/+19
*
bpo-44688: Remove ASCII limitation from `sqlite3` collation names (GH-27395)
Erlend Egeberg Aasland
2021-07-29
1
-52/+11
*
bpo-42064: Migrate to `sqlite3_create_collation_v2` (GH-27156)
Erlend Egeberg Aasland
2021-07-27
1
-24/+17
*
bpo-42064: Finalise establishing sqlite3 global state (GH-27155)
Erlend Egeberg Aasland
2021-07-20
1
-16/+35
*
bpo-44641: Use vectorcall in sqlite3 collation callback (GH-27158)
Erlend Egeberg Aasland
2021-07-15
1
-3/+3
*
Fix docstring typo in sqlite3.Connection.executescript/sqlite3.Cursor.execute...
Erlend Egeberg Aasland
2021-07-14
1
-2/+2
*
bpo-42064: Move `sqlite3` exceptions to global state, part 2 of 2 (GH-26884)
Erlend Egeberg Aasland
2021-07-14
1
-18/+24
*
bpo-44491: Allow clearing the sqlite3 authoriser callback (GH-26863)
Erlend Egeberg Aasland
2021-06-24
1
-6/+10
*
bpo-42064: Move `sqlite3` exceptions to global state, part 1 of 2 (GH-26745)
Erlend Egeberg Aasland
2021-06-23
1
-5/+6
*
bpo-40956: Convert sqlite3.connect and sqlite3.Connection.__init__ to AC (GH-...
Erlend Egeberg Aasland
2021-06-20
1
-27/+21
*
bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)
Erlend Egeberg Aasland
2021-06-17
1
-1/+2
*
bpo-42064: Move sqlite3 types to global state (GH-26537)
Erlend Egeberg Aasland
2021-06-15
1
-10/+14
*
Fix compiler errors for unused variables (GH-26601)
Pablo Galindo
2021-06-08
1
-1/+1
*
bpo-44327: Remove unused members from pysqlite_Connection (GH-26565)
Erlend Egeberg Aasland
2021-06-06
1
-1/+0
*
bpo-44304: Ensure the sqlite3 destructor callback is always called with the G...
Pablo Galindo
2021-06-05
1
-0/+5
*
bpo-44315: Remove unused connection argument from pysqlite_step() (GH-26535)
Erlend Egeberg Aasland
2021-06-04
1
-2/+2
*
bpo-43853: Handle sqlite3_value_text() errors (GH-25422)
Erlend Egeberg Aasland
2021-06-04
1
-8/+11
*
bpo-44042: Optimize sqlite3 begin transaction (GH-25908)
Erlend Egeberg Aasland
2021-06-03
1
-36/+0
*
bpo-42862: Use functools.lru_cache iso. _sqlite.Cache in sqlite3 module (GH-2...
Erlend Egeberg Aasland
2021-06-03
1
-3/+25
*
bpo-42213: Remove redundant cyclic GC hack in sqlite3 (GH-26517)
Erlend Egeberg Aasland
2021-06-03
1
-8/+0
*
bpo-42213: Check connection in sqlite3.Connection.__enter__ (GH-26512)
Erlend Egeberg Aasland
2021-06-03
1
-16/+15
*
bpo-44165: Optimise sqlite3 statement preparation by passing string size (GH-...
Erlend Egeberg Aasland
2021-06-02
1
-2/+2
*
bpo-42972: Track sqlite3 statement objects (GH-26475)
Erlend Egeberg Aasland
2021-06-01
1
-23/+2
*
bpo-42972: Fix sqlite3 traverse/clear functions (GH-26452)
Erlend Egeberg Aasland
2021-05-31
1
-11/+11
*
bpo-42972: Fully implement GC protocol for sqlite3 heap types (GH-26104)
Erlend Egeberg Aasland
2021-05-25
1
-17/+41
*
bpo-44047: Remove unused argument to _pysqlite_seterror (GH-25915)
Erlend Egeberg Aasland
2021-05-07
1
-15/+15
*
bpo-43434: Move sqlite3.connect audit events to sqlite3.Connection.__init__ (...
Erlend Egeberg Aasland
2021-05-02
1
-0/+8
*
bpo-43762: Add audit events for loading of sqlite3 extensions (GH-25246)
Erlend Egeberg Aasland
2021-04-26
1
-0/+9
*
bpo-43852: Improve tuple creation in sqlite3 (GH-25421)
Erlend Egeberg Aasland
2021-04-23
1
-2/+1
*
bpo-43296: Handle sqlite3_value_blob() errors (GH-24674)
Erlend Egeberg Aasland
2021-04-14
1
-7/+17
*
bpo-43265: Improve sqlite3.Connection.backup error handling (GH-24586)
Erlend Egeberg Aasland
2021-04-14
1
-45/+34
*
bpo-43294: Remove unused variables in pysqlite_connection_*() (GH-24658)
Erlend Egeberg Aasland
2021-02-26
1
-6/+4
*
bpo-43314: Remove SQLITE_OPEN_URI ifdef (GH-24637)
Erlend Egeberg Aasland
2021-02-26
1
-11/+0
*
bpo-43269: Remove redundant extern keywords (GH-24605)
Erlend Egeberg Aasland
2021-02-21
1
-1/+2
*
bpo-43269: Clean up sqlite3 file scope (GH-24578)
Erlend Egeberg Aasland
2021-02-21
1
-6/+14
*
bpo-43258: Make sqlite3 callback functions static (GH-24574)
Erlend Egeberg Aasland
2021-02-19
1
-2/+4
*
bpo-43258: Don't allocate sqlite3 aggregate context for empty queries (GH-24569)
Erlend Egeberg Aasland
2021-02-19
1
-2/+6
*
bpo-40956: Fix segfault when Connection.backup is called without target (GH-2...
Erlend Egeberg Aasland
2021-02-10
1
-2/+2
*
bpo-43083: Fix error handling in _sqlite3 (GH-24395)
Serhiy Storchaka
2021-01-31
1
-1/+5
*
bpo-40810: Require SQLite 3.7.15 (GH-24106)
Erlend Egeberg Aasland
2021-01-06
1
-28/+2
*
Fix compiler warnings regarding loss of data (GH-23983)
Pablo Galindo
2020-12-29
1
-1/+1
[next]