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-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
*
bpo-45126: Harden `sqlite3` connection initialisation (GH-28227)
Erlend Egeberg Aasland
2021-11-16
1
-56/+66
*
bpo-45512: Raise exception if sqlite3.Connection.__init__ is called with bad ...
Erlend Egeberg Aasland
2021-11-15
1
-3/+3
*
bpo-45512: Simplify isolation_level handling in `sqlite3` (GH-29053)
Erlend Egeberg Aasland
2021-11-15
1
-56/+63
*
bpo-45731: Handle --enable-loadable-sqlite-extensions in configure (GH-29434)
Christian Heimes
2021-11-06
1
-1/+1
*
bpo-45243: Add support for setting/getting `sqlite3` connection limits (GH-28...
Erlend Egeberg Aasland
2021-11-01
1
-0/+53
*
bpo-45581: Raise `MemoryError` in `sqlite3.connect` if SQLite signals memory ...
Erlend Egeberg Aasland
2021-10-29
1
-0/+4
*
bpo-42064: Convert `sqlite3` global state to module state (GH-29073)
Erlend Egeberg Aasland
2021-10-27
1
-2/+3
*
bpo-42064: Add module backref to `sqlite3` callback context (GH-28242)
Erlend Egeberg Aasland
2021-10-19
1
-17/+44
*
bpo-44991: Normalise function and collation callback naming (GH-28209)
Erlend Egeberg Aasland
2021-10-12
1
-7/+5
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-2/+2
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-2/+2
*
bpo-45040: Simplify sqlite3 transaction control functions (GH-28019)
Erlend Egeberg Aasland
2021-09-19
1
-47/+21
*
bpo-45126: Fix ref. leak in `sqlite3.Connection.__init__` (GH-28231)
Erlend Egeberg Aasland
2021-09-12
1
-8/+41
*
bpo-42064: Pass module state to trace, progress, and authorizer callbacks (GH...
Erlend Egeberg Aasland
2021-09-07
1
-69/+107
*
bpo-44991: Normalise `sqlite3` callback naming (GH-28088)
Erlend Egeberg Aasland
2021-09-07
1
-38/+46
*
bpo-42064: Offset arguments for PyObject_Vectorcall in the _sqlite module (GH...
Petr Viktorin
2021-08-31
1
-8/+11
*
bpo-44991: Make GIL handling more explicit in `sqlite3` callbacks (GH-27934)
Erlend Egeberg Aasland
2021-08-31
1
-35/+27
*
bpo-27334: Fix reference leak introduced by GH-26202 (GH-27942)
Erlend Egeberg Aasland
2021-08-25
1
-0/+1
*
bpo-27334: roll back transaction if sqlite3 context manager fails to commit (...
Erlend Egeberg Aasland
2021-08-25
1
-7/+21
*
bpo-42064: Pass module state to `sqlite3` UDF callbacks (GH-27456)
Erlend Egeberg Aasland
2021-08-24
1
-31/+58
*
bpo-44079: Strip superfluous statement cache from sqlite3.Connection (GH-25998)
Erlend Egeberg Aasland
2021-08-18
1
-85/+17
*
bpo-44859: Improve error handling in sqlite3 and and raise more accurate exce...
Serhiy Storchaka
2021-08-08
1
-6/+8
*
bpo-44839: Raise more specific errors in sqlite3 (GH-27613)
Serhiy Storchaka
2021-08-06
1
-36/+31
*
bpo-44822: Don't truncate `str`s with embedded NULL chars returned by `sqlite...
Erlend Egeberg Aasland
2021-08-05
1
-3/+10
*
bpo-31746: Fix broken call in GH-27431 (GH-27464)
Erlend Egeberg Aasland
2021-07-29
1
-1/+1
[next]