summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-113993: Allow interned strings to be mortal, and fix related issues...Petr Viktorin2024-06-241-2/+2
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-031-0/+1
* gh-118406: Add signature for sqlite3.Connection objects (#118428)Erlend E. Aasland2024-04-301-0/+7
* gh-117995: Don't raise DeprecationWarnings for indexed nameless params (#118001)Erlend E. Aasland2024-04-221-1/+1
* gh-117613: Argument Clinic: ensure that 'defining_class' params are positiona...neonene2024-04-161-4/+4
* gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)mpage2024-04-082-5/+4
* gh-111140: Adds PyLong_AsNativeBytes and PyLong_FromNative[Unsigned]Bytes fun...Steve Dower2024-02-121-1/+1
* gh-91602: Add iterdump() support for filtering database objects (#114501)Mariusz Felisiak2024-02-062-11/+69
* gh-115026: Argument Clinic: handle PyBuffer_FillInfo errors in generated code...Nikita Sobolev2024-02-051-2/+4
* gh-111789: Simplify the sqlite code (GH-111829)Serhiy Storchaka2023-11-102-17/+6
* Add private _PyUnicode_AsUTF8NoNUL() function (GH-111957)Serhiy Storchaka2023-11-101-7/+1
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-074-18/+93
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-013-87/+17
* gh-67565: Remove redundant C-contiguity checks (GH-105521)Furkan Onder2023-10-232-10/+2
* gh-111089: Use PyUnicode_AsUTF8() in sqlite3 (#111122)Victor Stinner2023-10-201-6/+1
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-178-6/+19
* gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)Victor Stinner2023-08-316-30/+14
* 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-292-16/+111
* gh-108278: Deprecate passing the three first params as keyword args for sqlit...Erlend E. Aasland2023-08-282-5/+60
* gh-108494: Argument Clinic: fix support of Limited C API (GH-108536)Serhiy Storchaka2023-08-281-1/+1
* gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)Victor Stinner2023-08-241-1/+1
* gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)Victor Stinner2023-08-244-21/+21
* gh-106320: Remove private PyLong C API functions (#108429)Victor Stinner2023-08-241-0/+5
* gh-105539: Emit ResourceWarning if sqlite3 database is not closed explicitly ...Erlend E. Aasland2023-08-221-0/+8
* gh-107704: Argument Clinic: add support for deprecating keyword use of parame...Serhiy Storchaka2023-08-191-24/+13
* 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-154-4/+55
* gh-107938: Synchonise the signature of of sqlite3.connect and sqlite3.Connect...Erlend E. Aasland2023-08-143-18/+61
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-253-21/+21
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-121-2/+2
* 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-032-0/+7
* gh-106320: Remove private _PyErr C API functions (#106356)Victor Stinner2023-07-031-0/+6
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-027-7/+0
* gh-105927: Avoid calling PyWeakref_GET_OBJECT() (#105997)Victor Stinner2023-06-221-3/+10
* 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-183-107/+4
* gh-105375: Improve error handling in sqlite3 collation callback (#105412)Erlend E. Aasland2023-06-071-3/+5
* gh-92536: Argument Clinic no longer emits PyUnicode_READY() (#105208)Victor Stinner2023-06-013-18/+3
* 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-072-9/+26
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-103489: Add get/set config methods to sqlite3.Connection (#103506)Erlend E. Aasland2023-04-263-1/+240
* gh-103015: Add entrypoint keyword param to sqlite3.Connection.load_extension ...Erlend E. Aasland2023-04-262-12/+70
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-242-14/+10
* gh-101693: In sqlite3, deprecate using named placeholders with parameters sup...Erlend E. Aasland2023-02-151-0/+13
* gh-101409: Improve generated clinic code for self type checks (#101411)Erlend E. Aasland2023-01-312-6/+7
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-032-13/+13
* gh-99537: Use Py_SETREF() function in C code (#99656)Victor Stinner2022-11-221-2/+1