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
Commit message (
Expand
)
Author
Age
Files
Lines
*
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
3
-147/+35
*
gh-94321: Document sqlite3.PrepareProtocol (#94620)
Erlend Egeberg Aasland
2022-07-07
1
-0/+3
*
gh-88239: Use sqlite3_stmt_busy() to determine if statements are in use (#25984)
Erlend Egeberg Aasland
2022-06-27
3
-18/+3
*
gh-90016: Reword sqlite3 adapter/converter docs (#93095)
Erlend Egeberg Aasland
2022-06-25
2
-11/+11
*
gh-89121: Keep the number of pending SQLite statements to a minimum (#30379)
Erlend Egeberg Aasland
2022-06-23
1
-22/+12
*
gh-94028: Clear and reset sqlite3 statements properly in cursor iternext (GH-...
Erlend Egeberg Aasland
2022-06-21
1
-0/+3
*
gh-93925: Improve clarity of sqlite3 commit/rollback, and close docs (#93926)
Erlend Egeberg Aasland
2022-06-19
2
-10/+22
*
gh-93829: In sqlite3, replace Py_BuildValue with faster APIs (#93830)
Erlend Egeberg Aasland
2022-06-15
2
-4/+3
*
gh-79579: Improve DML query detection in sqlite3 (#93623)
Erlend Egeberg Aasland
2022-06-14
1
-74/+45
*
gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)
Serhiy Storchaka
2022-06-14
2
-35/+7
*
gh-92434: Silence compiler warning in Modules/_sqlite/connection.c on 32-bit ...
neonene
2022-06-10
1
-1/+1
*
gh-93421: Update sqlite3 cursor.rowcount only after SQLITE_DONE (#93526)
Erlend Egeberg Aasland
2022-06-08
1
-8/+11
*
gh-93370: Deprecate sqlite3.version and sqlite3.version_info (#93482)
Kalyan
2022-06-07
1
-1/+1
*
gh-93044: No longer convert the database argument of sqlite3.connect() to byt...
Serhiy Storchaka
2022-05-21
2
-7/+4
*
gh-91922: Fix sqlite connection on nonstardard locales and paths (GH-92926)
Serhiy Storchaka
2022-05-20
2
-53/+20
*
gh-92547: Remove deprecated sqlite3 features (#92548)
Erlend Egeberg Aasland
2022-05-16
2
-72/+1
*
gh-89022: Improve sqlite3 exceptions related to binding params and API misuse...
Erlend Egeberg Aasland
2022-05-04
2
-15/+19
*
gh-80254: Disallow recursive usage of cursors in `sqlite3` converters (#29054)
Erlend Egeberg Aasland
2022-05-03
1
-7/+24
*
gh-92206: Improve scoping of sqlite3 statement helper (#92260)
Erlend Egeberg Aasland
2022-05-03
3
-9/+8
*
gh-89289: Fix compiler warning in _sqlite/connection.c (#92258)
Erlend Egeberg Aasland
2022-05-03
1
-1/+1
*
gh-92206: Improve scoping of sqlite3 bind param functions (#92250)
Erlend Egeberg Aasland
2022-05-03
3
-257/+250
*
gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210)
Victor Stinner
2022-05-03
4
-33/+33
*
gh-89289: Harden sqlite3.Connection init (#92214)
Erlend Egeberg Aasland
2022-05-03
1
-8/+15
*
gh-92206: Improve scoping of sqlite3 reset statement helper (#92241)
Erlend Egeberg Aasland
2022-05-03
3
-30/+28
*
gh-92206: Improve scoping of sqlite3 register cursor helper (#92212)
Erlend Egeberg Aasland
2022-05-03
3
-28/+23
*
gh-92206: Move pysqlite_step() to Modules/_sqlite/cursor.c (#92207)
Erlend Egeberg Aasland
2022-05-03
3
-16/+14
*
gh-89301: Fix regression with bound values in traced SQLite statements (#92053)
Erlend Egeberg Aasland
2022-05-02
1
-14/+40
*
gh-92019: Make sqlite3.Blob indexing conform with the norm (#92020)
Erlend Egeberg Aasland
2022-04-30
1
-18/+44
*
gh-91583: AC: Fix regression for functions with defining_class (GH-91739)
Serhiy Storchaka
2022-04-30
1
-22/+113
*
gh-69093: Add indexing and slicing support to sqlite3.Blob (#91599)
Erlend Egeberg Aasland
2022-04-22
1
-5/+202
*
gh-69093: Add context manager support to sqlite3.Blob (GH-91562)
Erlend Egeberg Aasland
2022-04-16
2
-1/+95
*
gh-69093: improve sqlite3.Connection.blobopen() error handling (GH-91571)
Erlend Egeberg Aasland
2022-04-15
1
-1/+5
*
gh-69093: Don't allow instantiation of sqlite3.Blob objects (GH-91570)
Erlend Egeberg Aasland
2022-04-15
1
-1/+1
*
gh-69093: Expose sqlite3.Blob as a class (GH-91550)
Jelle Zijlstra
2022-04-15
1
-0/+1
*
gh-69093: Support basic incremental I/O to blobs in `sqlite3` (GH-30680)
Erlend Egeberg Aasland
2022-04-15
8
-6/+739
*
gh-79097: Add support for aggregate window functions in sqlite3 (GH-20903)
Erlend Egeberg Aasland
2022-04-12
4
-8/+230
*
bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728)
Erlend Egeberg Aasland
2022-04-05
2
-1/+280
*
bpo-44859: Raise more accurate exceptions in `sqlite3` (GH-27695)
Erlend Egeberg Aasland
2022-03-17
2
-5/+7
*
sqlite3: normalise pre-acronym determiners (GH-31772)
Erlend Egeberg Aasland
2022-03-11
2
-7/+7
*
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
*
Docstring: replace pysqlite with sqlite3 (GH-31758)
Erlend Egeberg Aasland
2022-03-09
2
-7/+7
*
bpo-46878: Purge 'non-standard' from sqlite3 docstrings (GH-31612)
Erlend Egeberg Aasland
2022-03-08
6
-69/+67
*
bpo-46874: Speed up sqlite3 user-defined aggregate 'step' method (GH-31604)
Erlend Egeberg Aasland
2022-03-03
3
-4/+9
*
bpo-46541: Remove unneeded visits from sqlite3 (GH-31609)
Erlend Egeberg Aasland
2022-02-28
1
-7/+0
*
bpo-46541: Replace _Py_IDENTIFIER with _Py_ID in sqlite3 (GH-31351)
Erlend Egeberg Aasland
2022-02-16
5
-39/+61
*
bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)
Petr Viktorin
2022-02-11
1
-1/+1
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
4
-0/+8
[next]