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
*
gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)
Victor Stinner
2023-11-07
1
-1/+6
*
gh-111089: Use PyUnicode_AsUTF8() in sqlite3 (#111122)
Victor Stinner
2023-10-20
1
-6/+1
*
gh-110964: Remove private _PyArg functions (#110966)
Victor Stinner
2023-10-17
1
-0/+1
*
gh-106320: Remove private _PyErr_ChainExceptions() (#108713)
Victor Stinner
2023-08-31
1
-0/+2
*
gh-108278: Deprecate passing the first param of sqlite3.Connection callback A...
Erlend E. Aasland
2023-08-29
1
-9/+16
*
gh-108278: Deprecate passing the three first params as keyword args for sqlit...
Erlend E. Aasland
2023-08-28
1
-2/+4
*
gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)
Victor Stinner
2023-08-24
1
-1/+1
*
gh-105539: Emit ResourceWarning if sqlite3 database is not closed explicitly ...
Erlend E. Aasland
2023-08-22
1
-0/+8
*
gh-108083: Don't ignore exceptions in sqlite3.Connection.__init__() and .clos...
Erlend E. Aasland
2023-08-18
1
-31/+74
*
gh-93057: Deprecate positional use of optional sqlite3.connect() params (#107...
Erlend E. Aasland
2023-08-15
1
-1/+2
*
gh-107938: Synchonise the signature of of sqlite3.connect and sqlite3.Connect...
Erlend E. Aasland
2023-08-14
1
-1/+28
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-13/+13
*
gh-106320: Remove private pylifecycle.h functions (#106400)
Victor Stinner
2023-07-04
1
-0/+1
*
gh-106320: Remove private _PyImport C API functions (#106383)
Victor Stinner
2023-07-03
1
-0/+1
*
gh-105927: Add _PyWeakref_IS_DEAD() function (#105992)
Victor Stinner
2023-06-22
1
-12/+14
*
gh-105875: Require SQLite 3.15.2 or newer (#105876)
Erlend E. Aasland
2023-06-18
1
-59/+0
*
gh-105375: Improve error handling in sqlite3 collation callback (#105412)
Erlend E. Aasland
2023-06-07
1
-3/+5
*
gh-104341: Adjust tstate_must_exit() to Respect Interpreter Finalization (gh-...
Eric Snow
2023-05-15
1
-1/+1
*
gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds...
Erlend E. Aasland
2023-05-07
1
-4/+22
*
gh-103489: Add get/set config methods to sqlite3.Connection (#103506)
Erlend E. Aasland
2023-04-26
1
-0/+117
*
gh-103015: Add entrypoint keyword param to sqlite3.Connection.load_extension ...
Erlend E. Aasland
2023-04-26
1
-3/+6
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-02-24
1
-8/+6
*
bpo-15999: Accept arbitrary values for boolean parameters. (#15609)
Serhiy Storchaka
2022-12-03
1
-6/+6
*
gh-83638: Add sqlite3.Connection.autocommit for PEP 249 compliant behaviour (...
Erlend E. Aasland
2022-11-12
1
-32/+148
*
gh-95132: Correctly relay *args and **kwds from sqlite3.connect to factory (#...
Erlend Egeberg Aasland
2022-07-23
1
-0/+1
*
gh-93925: Improve clarity of sqlite3 commit/rollback, and close docs (#93926)
Erlend Egeberg Aasland
2022-06-19
1
-6/+12
*
gh-93829: In sqlite3, replace Py_BuildValue with faster APIs (#93830)
Erlend Egeberg Aasland
2022-06-15
1
-2/+1
*
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka
2022-06-14
1
-28/+6
*
gh-92434: Silence compiler warning in Modules/_sqlite/connection.c on 32-bit ...
neonene
2022-06-10
1
-1/+1
*
gh-91922: Fix sqlite connection on nonstardard locales and paths (GH-92926)
Serhiy Storchaka
2022-05-20
1
-42/+14
*
gh-89289: Fix compiler warning in _sqlite/connection.c (#92258)
Erlend Egeberg Aasland
2022-05-03
1
-1/+1
*
gh-89289: Harden sqlite3.Connection init (#92214)
Erlend Egeberg Aasland
2022-05-03
1
-8/+15
*
gh-92206: Improve scoping of sqlite3 register cursor helper (#92212)
Erlend Egeberg Aasland
2022-05-03
1
-26/+0
*
gh-89301: Fix regression with bound values in traced SQLite statements (#92053)
Erlend Egeberg Aasland
2022-05-02
1
-14/+40
*
gh-69093: improve sqlite3.Connection.blobopen() error handling (GH-91571)
Erlend Egeberg Aasland
2022-04-15
1
-1/+5
*
gh-69093: Support basic incremental I/O to blobs in `sqlite3` (GH-30680)
Erlend Egeberg Aasland
2022-04-15
1
-2/+85
*
gh-79097: Add support for aggregate window functions in sqlite3 (GH-20903)
Erlend Egeberg Aasland
2022-04-12
1
-7/+172
*
bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728)
Erlend Egeberg Aasland
2022-04-05
1
-0/+121
*
bpo-44859: Raise more accurate exceptions in `sqlite3` (GH-27695)
Erlend Egeberg Aasland
2022-03-17
1
-2/+5
*
bpo-45138: Revert GH-28240: Expand traced SQL statements (GH-31788)
Erlend Egeberg Aasland
2022-03-09
1
-35/+14
*
bpo-45138: Expand traced SQL statements in `sqlite3` trace callback (GH-28240)
Erlend Egeberg Aasland
2022-03-09
1
-14/+35
*
bpo-46878: Purge 'non-standard' from sqlite3 docstrings (GH-31612)
Erlend Egeberg Aasland
2022-03-08
1
-30/+26
*
bpo-46874: Speed up sqlite3 user-defined aggregate 'step' method (GH-31604)
Erlend Egeberg Aasland
2022-03-03
1
-4/+6
*
bpo-46541: Replace _Py_IDENTIFIER with _Py_ID in sqlite3 (GH-31351)
Erlend Egeberg Aasland
2022-02-16
1
-23/+18
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-0/+2
*
bpo-43853: Expand test suite for SQLite UDF's (GH-27642)
Erlend Egeberg Aasland
2022-01-26
1
-1/+5
*
bpo-44092: Don't reset statements/cursors before rollback (GH-26026)
Erlend Egeberg Aasland
2022-01-03
1
-24/+0
*
bpo-45828: Use unraisable exceptions within sqlite3 callbacks (FH-29591)
Erlend Egeberg Aasland
2021-11-29
1
-1/+1
*
bpo-45512: Use Argument Clinic to set sqlite3 isolation level (GH-29593)
Erlend Egeberg Aasland
2021-11-18
1
-55/+65
*
bpo-45512: Simplify manage isolation level (GH-29562)
Dong-hee Na
2021-11-17
1
-35/+21
[next]