COMMITS
/ Modules/_sqlite/connection.c September 13, 2021
E
[3.10] bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231). (GH-28298)
Erlend Egeberg Aasland committed
August 28, 2021
E
[3.10] bpo-27334: roll back transaction if sqlite3 context manager fails to commit (GH-26202) (GH-27943)
Erlend Egeberg Aasland committed
August 6, 2021
M
bpo-44822: Don't truncate `str`s with embedded NULL chars returned by `sqlite3` UDF callbacks (GH-27588)
Miss Islington (bot) committed
July 30, 2021
E
[3.10] bpo-31746: Prevent segfaults when sqlite3.Connection is uninitialised (GH-27431). (GH-27472)
Erlend Egeberg Aasland committed
July 14, 2021
E
[3.10] Fix docstring typo in sqlite3.Connection.executescript/sqlite3.Cursor.executescript (GH-27147) (GH-27151)
Erlend Egeberg Aasland committed
June 17, 2021
M
bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351) (GH-26766)
Miss Islington (bot) committed
June 5, 2021
M
bpo-44304: Ensure the sqlite3 destructor callback is always called with the GIL held (GH-26551) (GH_26552)
Miss Islington (bot) committed
June 4, 2021
M
bpo-43853: Handle sqlite3_value_text() errors (GH-25422)
Miss Islington (bot) committed
June 3, 2021
E
[3.10] bpo-42972: Track sqlite3 statement objects (GH-26475) (GH-26515)
Erlend Egeberg Aasland committed
May 31, 2021
M
bpo-42972: Fix sqlite3 traverse/clear functions (GH-26452) (GH-26461)
Miss Islington (bot) committed
May 25, 2021
M
bpo-42972: Fully implement GC protocol for sqlite3 heap types (GH-26104)
Miss Islington (bot) committed
May 2, 2021
E
bpo-43434: Move sqlite3.connect audit events to sqlite3.Connection.__init__ (GH-25818)
Erlend Egeberg Aasland committed
April 26, 2021
E
bpo-43762: Add audit events for loading of sqlite3 extensions (GH-25246)
Erlend Egeberg Aasland committed
April 23, 2021
E
bpo-43852: Improve tuple creation in sqlite3 (GH-25421)
Erlend Egeberg Aasland committed
April 14, 2021
E
bpo-43296: Handle sqlite3_value_blob() errors (GH-24674)
Erlend Egeberg Aasland committed
E
bpo-43265: Improve sqlite3.Connection.backup error handling (GH-24586)
Erlend Egeberg Aasland committed
February 26, 2021
E
bpo-43294: Remove unused variables in pysqlite_connection_*() (GH-24658)
Erlend Egeberg Aasland committed
E
bpo-43314: Remove SQLITE_OPEN_URI ifdef (GH-24637)
Erlend Egeberg Aasland committed
February 21, 2021
E
bpo-43269: Remove redundant extern keywords (GH-24605)
Erlend Egeberg Aasland committed
E
bpo-43269: Clean up sqlite3 file scope (GH-24578)
Erlend Egeberg Aasland committed
February 19, 2021
E
bpo-43258: Make sqlite3 callback functions static (GH-24574)
Erlend Egeberg Aasland committed
E
bpo-43258: Don't allocate sqlite3 aggregate context for empty queries (GH-24569)
Erlend Egeberg Aasland committed
February 10, 2021
E
bpo-40956: Fix segfault when Connection.backup is called without target (GH-24503)
Erlend Egeberg Aasland committed
January 31, 2021
S
bpo-43083: Fix error handling in _sqlite3 (GH-24395)
Serhiy Storchaka committed
January 6, 2021
E
bpo-40810: Require SQLite 3.7.15 (GH-24106)
Erlend Egeberg Aasland committed
December 29, 2020
P
Fix compiler warnings regarding loss of data (GH-23983)
Pablo Galindo committed
December 28, 2020
E
bpo-1635741: sqlite3: Fix ref leak introduced by commit bf64d90 (GH-23972)
Erlend Egeberg Aasland committed
December 27, 2020
E
bpo-1635741: sqlite3 uses Py_NewRef/Py_XNewRef (GH-23170)
Erlend Egeberg Aasland committed
E
bpo-40956: Convert _sqlite3.Connection to Argument Clinic, part 2 (GH-23838)
Erlend Egeberg Aasland committed
December 18, 2020
D
bpo-40956: Fix sqlite3 AC code (GH-23837)
Dong-hee Na committed
E
bpo-40956: Convert _sqlite3.Connection to Argument Clinic (GH-23341)
Erlend Egeberg Aasland committed
October 1, 2020
E
bpo-41861: Convert _sqlite3 CursorType and ConnectionType to heap types (GH-22478)
Erlend Egeberg Aasland committed
E
bpo-41861: Convert _sqlite3 RowType and StatementType to heap types (GH-22444)
Erlend Egeberg Aasland committed
September 27, 2020
E
bpo-41861: Convert _sqlite3 cache and node static types to heap types (GH-22417)
Erlend Egeberg Aasland committed
September 20, 2020
P
bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)
Peter McCormick committed
September 7, 2020
E
bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)
Erlend Egeberg Aasland committed
September 5, 2020
E
bpo-40318: Migrate to SQLite3 trace v2 API (GH-19581)
Erlend Egeberg Aasland committed
April 15, 2020
V
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner committed
V
bpo-40268: Remove explicit pythread.h includes (#19529)
Victor Stinner committed
April 12, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472)
Serhiy Storchaka committed
April 11, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
Serhiy Storchaka committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
October 23, 2019
S
Replace _pysqlite_long_from_int64() with PyLong_FromLongLong() (GH-16882)
Sergey Fedoseev committed
July 13, 2019
G
closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268)
gescheit committed
July 11, 2019
J
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer committed
July 8, 2019
J
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
June 26, 2019
V
bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386)
Victor Stinner committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
December 17, 2018
Z
bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175)
Zackery Spytz committed