summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/connection.c
Commit message (Expand)AuthorAgeFilesLines
* gh-139327: fix some reference leaks in `sqlite3` error branches (#139328)Bénédikt Tran2025-10-011-8/+15
* gh-138736: Fix sqlite3.Connection.blobopen 'row' parameter type and naming (#...chiri2025-09-171-3/+3
* GH-137623: Use an AC decorator for docstring line length enforcement (#137690)Adam Turner2025-08-181-4/+8
* gh-133595: Clean up sqlite3.Connection APIs (GH-133605)Serhiy Storchaka2025-05-081-15/+12
* GH-131238: More refactoring of core header files (GH-131351)Mark Shannon2025-03-171-0/+1
* gh-111178: Change Argument Clinic signature for METH_O (#130682)Victor Stinner2025-03-111-3/+3
* gh-129928: Rework sqlite3 error helpers (#129929)Erlend E. Aasland2025-02-111-13/+13
* gh-129928: Raise more accurate exception for incorrect sqlite3 UDF creation (...Erlend E. Aasland2025-02-111-1/+23
* gh-129354: Use PyErr_FormatUnraisable() function (#129524)Victor Stinner2025-02-031-3/+6
* gh-111178: fix UBSan failures in `Modules/_sqlite` (GH-129087)Bénédikt Tran2025-01-311-17/+33
* gh-128911: Add PyImport_ImportModuleAttr() function (#128912)Victor Stinner2025-01-301-2/+1
* gh-129346: Handle allocation errors for SQLite aggregate context (#129347)Erlend E. Aasland2025-01-271-0/+5
* gh-118406: Add signature for sqlite3.Connection objects (#118428)Erlend E. Aasland2024-04-301-0/+7
* gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)mpage2024-04-081-2/+2
* gh-91602: Add iterdump() support for filtering database objects (#114501)Mariusz Felisiak2024-02-061-4/+16
* Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)Serhiy Storchaka2023-11-101-7/+1
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-071-1/+6
* gh-111089: Use PyUnicode_AsUTF8() in sqlite3 (#111122)Victor Stinner2023-10-201-6/+1
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-0/+1
* gh-106320: Remove private _PyErr_ChainExceptions() (#108713)Victor Stinner2023-08-311-0/+2
* gh-108278: Deprecate passing the first param of sqlite3.Connection callback A...Erlend E. Aasland2023-08-291-9/+16
* gh-108278: Deprecate passing the three first params as keyword args for sqlit...Erlend E. Aasland2023-08-281-2/+4
* gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)Victor Stinner2023-08-241-1/+1
* gh-105539: Emit ResourceWarning if sqlite3 database is not closed explicitly ...Erlend E. Aasland2023-08-221-0/+8
* gh-108083: Don't ignore exceptions in sqlite3.Connection.__init__() and .clos...Erlend E. Aasland2023-08-181-31/+74
* gh-93057: Deprecate positional use of optional sqlite3.connect() params (#107...Erlend E. Aasland2023-08-151-1/+2
* gh-107938: Synchonise the signature of of sqlite3.connect and sqlite3.Connect...Erlend E. Aasland2023-08-141-1/+28
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-13/+13
* gh-106320: Remove private pylifecycle.h functions (#106400)Victor Stinner2023-07-041-0/+1
* gh-106320: Remove private _PyImport C API functions (#106383)Victor Stinner2023-07-031-0/+1
* gh-105927: Add _PyWeakref_IS_DEAD() function (#105992)Victor Stinner2023-06-221-12/+14
* gh-105875: Require SQLite 3.15.2 or newer (#105876)Erlend E. Aasland2023-06-181-59/+0
* gh-105375: Improve error handling in sqlite3 collation callback (#105412)Erlend E. Aasland2023-06-071-3/+5
* gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...Eric Snow2023-05-151-1/+1
* gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds...Erlend E. Aasland2023-05-071-4/+22
* gh-103489: Add get/set config methods to sqlite3.Connection (#103506)Erlend E. Aasland2023-04-261-0/+117
* gh-103015: Add entrypoint keyword param to sqlite3.Connection.load_extension ...Erlend E. Aasland2023-04-261-3/+6
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-241-8/+6
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-031-6/+6
* gh-83638: Add sqlite3.Connection.autocommit for PEP 249 compliant behaviour (...Erlend E. Aasland2022-11-121-32/+148
* gh-95132: Correctly relay *args and **kwds from sqlite3.connect to factory (#...Erlend Egeberg Aasland2022-07-231-0/+1
* gh-93925: Improve clarity of sqlite3 commit/rollback, and close docs (#93926)Erlend Egeberg Aasland2022-06-191-6/+12
* gh-93829: In sqlite3, replace Py_BuildValue with faster APIs (#93830)Erlend Egeberg Aasland2022-06-151-2/+1
* gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)Serhiy Storchaka2022-06-141-28/+6
* gh-92434: Silence compiler warning in Modules/_sqlite/connection.c on 32-bit ...neonene2022-06-101-1/+1
* gh-91922: Fix sqlite connection on nonstardard locales and paths (GH-92926)Serhiy Storchaka2022-05-201-42/+14
* gh-89289: Fix compiler warning in _sqlite/connection.c (#92258)Erlend Egeberg Aasland2022-05-031-1/+1
* gh-89289: Harden sqlite3.Connection init (#92214)Erlend Egeberg Aasland2022-05-031-8/+15
* gh-92206: Improve scoping of sqlite3 register cursor helper (#92212)Erlend Egeberg Aasland2022-05-031-26/+0
* gh-89301: Fix regression with bound values in traced SQLite statements (#92053)Erlend Egeberg Aasland2022-05-021-14/+40