| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-122943: Add the varpos parameter in _PyArg_UnpackKeywords (GH-126564) | Serhiy Storchaka | 2024-11-08 | 3 | -20/+37 |
|
|
* | gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12... | Petr Viktorin | 2024-06-21 | 1 | -2/+2 |
|
|
* | gh-117613: Argument Clinic: ensure that 'defining_class' params are positiona... | neonene | 2024-04-16 | 1 | -4/+4 |
|
|
* | gh-91602: Add iterdump() support for filtering database objects (#114501) | Mariusz Felisiak | 2024-02-06 | 1 | -7/+53 |
|
|
* | gh-115026: Argument Clinic: handle PyBuffer_FillInfo errors in generated code... | Nikita Sobolev | 2024-02-05 | 1 | -2/+4 |
|
|
* | gh-111089: Revert PyUnicode_AsUTF8() changes (#111833) | Victor Stinner | 2023-11-07 | 3 | -17/+87 |
|
|
* | gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585) | Victor Stinner | 2023-11-01 | 3 | -87/+17 |
|
|
* | gh-67565: Remove redundant C-contiguity checks (GH-105521) | Furkan Onder | 2023-10-23 | 2 | -10/+2 |
|
|
* | gh-110964: Remove private _PyArg functions (#110966) | Victor Stinner | 2023-10-17 | 6 | -6/+14 |
|
|
* | gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726) | Victor Stinner | 2023-08-31 | 6 | -30/+14 |
|
|
* | gh-108278: Deprecate passing the first param of sqlite3.Connection callback A... | Erlend E. Aasland | 2023-08-29 | 1 | -7/+95 |
|
|
* | gh-108278: Deprecate passing the three first params as keyword args for sqlit... | Erlend E. Aasland | 2023-08-28 | 1 | -3/+56 |
|
|
* | gh-108444: Argument Clinic uses PyLong_AsInt() (#108458) | Victor Stinner | 2023-08-24 | 4 | -21/+21 |
|
|
* | gh-107704: Argument Clinic: add support for deprecating keyword use of parame... | Serhiy Storchaka | 2023-08-19 | 1 | -24/+13 |
|
|
* | gh-93057: Deprecate positional use of optional sqlite3.connect() params (#107... | Erlend E. Aasland | 2023-08-15 | 2 | -3/+42 |
|
|
* | gh-107938: Synchonise the signature of of sqlite3.connect and sqlite3.Connect... | Erlend E. Aasland | 2023-08-14 | 1 | -0/+25 |
|
|
* | gh-92536: Argument Clinic no longer emits PyUnicode_READY() (#105208) | Victor Stinner | 2023-06-01 | 3 | -18/+3 |
|
|
* | gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds... | Erlend E. Aasland | 2023-05-07 | 1 | -5/+4 |
|
|
* | gh-103489: Add get/set config methods to sqlite3.Connection (#103506) | Erlend E. Aasland | 2023-04-26 | 1 | -1/+80 |
|
|
* | gh-103015: Add entrypoint keyword param to sqlite3.Connection.load_extension ... | Erlend E. Aasland | 2023-04-26 | 1 | -9/+64 |
|
|
* | gh-101409: Improve generated clinic code for self type checks (#101411) | Erlend E. Aasland | 2023-01-31 | 2 | -6/+7 |
|
|
* | bpo-15999: Accept arbitrary values for boolean parameters. (#15609) | Serhiy Storchaka | 2022-12-03 | 1 | -7/+7 |
|
|
* | gh-83638: Add sqlite3.Connection.autocommit for PEP 249 compliant behaviour (... | Erlend E. Aasland | 2022-11-12 | 1 | -10/+24 |
|
|
* | gh-90928: Improve static initialization of keywords tuple in AC (#95907) | Erlend E. Aasland | 2022-08-13 | 3 | -278/+104 |
|
|
* | gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (... | Eric Snow | 2022-08-11 | 5 | -20/+545 |
|
|
* | gh-95132: Correctly relay *args and **kwds from sqlite3.connect to factory (#... | Erlend Egeberg Aasland | 2022-07-23 | 1 | -111/+1 |
|
|
* | gh-90016: Reword sqlite3 adapter/converter docs (#93095) | Erlend Egeberg Aasland | 2022-06-25 | 1 | -5/+5 |
|
|
* | gh-93925: Improve clarity of sqlite3 commit/rollback, and close docs (#93926) | Erlend Egeberg Aasland | 2022-06-19 | 1 | -4/+10 |
|
|
* | gh-93044: No longer convert the database argument of sqlite3.connect() to byt... | Serhiy Storchaka | 2022-05-21 | 1 | -4/+2 |
|
|
* | gh-91922: Fix sqlite connection on nonstardard locales and paths (GH-92926) | Serhiy Storchaka | 2022-05-20 | 1 | -11/+6 |
|
|
* | gh-92547: Remove deprecated sqlite3 features (#92548) | Erlend Egeberg Aasland | 2022-05-16 | 1 | -41/+1 |
|
|
* | gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210) | Victor Stinner | 2022-05-03 | 4 | -33/+33 |
|
|
* | gh-91583: AC: Fix regression for functions with defining_class (GH-91739) | Serhiy Storchaka | 2022-04-30 | 1 | -22/+113 |
|
|
* | gh-69093: Add context manager support to sqlite3.Blob (GH-91562) | Erlend Egeberg Aasland | 2022-04-16 | 1 | -1/+52 |
|
|
* | gh-69093: Support basic incremental I/O to blobs in `sqlite3` (GH-30680) | Erlend Egeberg Aasland | 2022-04-15 | 2 | -1/+270 |
|
|
* | gh-79097: Add support for aggregate window functions in sqlite3 (GH-20903) | Erlend Egeberg Aasland | 2022-04-12 | 1 | -1/+52 |
|
|
* | bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728) | Erlend Egeberg Aasland | 2022-04-05 | 1 | -1/+159 |
|
|
* | sqlite3: normalise pre-acronym determiners (GH-31772) | Erlend Egeberg Aasland | 2022-03-11 | 1 | -3/+3 |
|
|
* | Docstring: replace pysqlite with sqlite3 (GH-31758) | Erlend Egeberg Aasland | 2022-03-09 | 1 | -3/+3 |
|
|
* | bpo-46878: Purge 'non-standard' from sqlite3 docstrings (GH-31612) | Erlend Egeberg Aasland | 2022-03-08 | 3 | -27/+26 |
|
|
* | bpo-45512: Use Argument Clinic to set sqlite3 isolation level (GH-29593) | Erlend Egeberg Aasland | 2021-11-18 | 1 | -17/+2 |
|
|
* | bpo-45126: Harden `sqlite3` connection initialisation (GH-28227) | Erlend Egeberg Aasland | 2021-11-16 | 1 | -6/+6 |
|
|
* | bpo-45512: Simplify isolation_level handling in `sqlite3` (GH-29053) | Erlend Egeberg Aasland | 2021-11-15 | 1 | -4/+21 |
|
|
* | bpo-45731: Handle --enable-loadable-sqlite-extensions in configure (GH-29434) | Christian Heimes | 2021-11-06 | 1 | -5/+5 |
|
|
* | bpo-45243: Add support for setting/getting `sqlite3` connection limits (GH-28... | Erlend Egeberg Aasland | 2021-11-01 | 1 | -1/+78 |
|
|
* | bpo-42064: Convert `sqlite3` global state to module state (GH-29073) | Erlend Egeberg Aasland | 2021-10-27 | 1 | -16/+5 |
|
|
* | bpo-42064: Add module backref to `sqlite3` callback context (GH-28242) | Erlend Egeberg Aasland | 2021-10-19 | 1 | -108/+46 |
|
|
* | bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231) | Erlend Egeberg Aasland | 2021-09-12 | 1 | -5/+8 |
|
|
* | bpo-43413: Fix handling keyword arguments in subclasses of some buitin classe... | Serhiy Storchaka | 2021-09-12 | 2 | -4/+6 |
|
|
* | bpo-44991: Normalise `sqlite3` callback naming (GH-28088) | Erlend Egeberg Aasland | 2021-09-07 | 1 | -14/+13 |
|
|