| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-42862: Use functools.lru_cache iso. _sqlite.Cache in sqlite3 module (GH-2... | Erlend Egeberg Aasland | 2021-06-03 | 1 | -2/+29 |
|
|
* | bpo-43434: Clean up sqlite3.connect() after GH-25818 (GH-25823) | Erlend Egeberg Aasland | 2021-05-02 | 1 | -8/+1 |
|
|
* | bpo-43434: Move sqlite3.connect audit events to sqlite3.Connection.__init__ (... | Erlend Egeberg Aasland | 2021-05-02 | 1 | -9/+0 |
|
|
* | bpo-43762: Add audit events for loading of sqlite3 extensions (GH-25246) | Erlend Egeberg Aasland | 2021-04-26 | 1 | -0/+8 |
|
|
* | bpo-43505: Explicitly initialize and shutdown sqlite3 (GH-25404) | Erlend Egeberg Aasland | 2021-04-14 | 1 | -11/+14 |
|
|
* | bpo-40810: Require SQLite 3.7.15 (GH-24106) | Erlend Egeberg Aasland | 2021-01-06 | 1 | -4/+4 |
|
|
* | bpo-1635741: sqlite3 uses Py_NewRef/Py_XNewRef (GH-23170) | Erlend Egeberg Aasland | 2020-12-27 | 1 | -10/+3 |
|
|
* | bpo-42264: Deprecate sqlite3.OptimizedUnicode (GH-23163) | Erlend Egeberg Aasland | 2020-11-17 | 1 | -9/+0 |
|
|
* | bpo-1635741: _sqlite3 uses PyModule_AddObjectRef() (GH-23148) | Erlend Egeberg Aasland | 2020-11-04 | 1 | -12/+13 |
|
|
* | bpo-40956: Convert _sqlite3 module level functions to Argument Clinic (GH-22484) | Erlend Egeberg Aasland | 2020-10-31 | 1 | -70/+91 |
|
|
* | bpo-42021: Fix possible ref leaks during _sqlite3 module init (GH-22673) | Erlend Egeberg Aasland | 2020-10-15 | 1 | -126/+84 |
|
|
* | bpo-41861: Convert _sqlite3 CursorType and ConnectionType to heap types (GH-2... | Erlend Egeberg Aasland | 2020-10-01 | 1 | -5/+5 |
|
|
* | bpo-41861: Convert _sqlite3 RowType and StatementType to heap types (GH-22444) | Erlend Egeberg Aasland | 2020-10-01 | 1 | -3/+3 |
|
|
* | bpo-41861: Convert _sqlite3 PrepareProtocolType to heap type (GH-22428) | Erlend Egeberg Aasland | 2020-09-28 | 1 | -3/+3 |
|
|
* | bpo-41861: Convert _sqlite3 cache and node static types to heap types (GH-22417) | Erlend Egeberg Aasland | 2020-09-27 | 1 | -1/+1 |
|
|
* | bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909) | Erlend Egeberg Aasland | 2020-09-07 | 1 | -18/+7 |
|
|
* | bpo-40737: Fix possible reference leak for sqlite3 initialization (GH-20323) | Erlend Egeberg Aasland | 2020-05-26 | 1 | -8/+12 |
|
|
* | bpo-39494: Remove extra null terminators from kwlist vars (GH-18267) | Alex Henrie | 2020-01-30 | 1 | -2/+2 |
|
|
* | bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) | Jeroen Demeyer | 2019-07-08 | 1 | -1/+1 |
|
|
* | bpo-37363: Add audit events for a range of modules (GH-14301) | Steve Dower | 2019-06-24 | 1 | -0/+4 |
|
|
* | bpo-30262: Don't expose private objects in sqlite3 (GH-1440) | Aviv Palivoda | 2019-05-09 | 1 | -4/+0 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) | Serhiy Storchaka | 2018-11-27 | 1 | -3/+3 |
|
|
* | prefix internal sqlite symbols with _pysqlite_ (GH-8215) | Benjamin Peterson | 2018-07-10 | 1 | -7/+7 |
|
|
* | bpo-27645: Add support for native backup facility of SQLite (GH-4238) | Emanuele Gaifas | 2018-03-10 | 1 | -0/+3 |
|
|
* | closes bpo-32460: ensure all non-static globals have initializers (#5061) | Benjamin Peterson | 2017-12-31 | 1 | -11/+14 |
|
|
* | bpo-31843: sqlite3.connect() now accepts PathLike objects as database name (#... | Anders Lorentsen | 2017-11-07 | 1 | -2/+2 |
|
|
* | sqlite: delete some bsddb cargo-culted code to work around Python 2.3/2.4 bugs | Benjamin Peterson | 2017-09-23 | 1 | -15/+0 |
|
|
* | bpo-31370: Remove support for threads-less builds (#3385) | Antoine Pitrou | 2017-09-07 | 1 | -2/+0 |
|
|
* | Use NULL rather than 0. (#778) | Serhiy Storchaka | 2017-03-23 | 1 | -1/+1 |
|
|
* | Issue #28985: Update authorizer constants in sqlite3 module | Berker Peksag | 2017-01-02 | 1 | -0/+13 |
|
|
* | Avoid calling functions with an empty string as format string | Victor Stinner | 2016-09-06 | 1 | -1/+1 |
|
|
* | Issue #26687: Use Py_RETURN_NONE macro in sqlite3 module | Berker Peksag | 2016-04-09 | 1 | -6/+3 |
|
|
* | Issue #25923: Added the const qualifier to static constant arrays. | Serhiy Storchaka | 2015-12-25 | 1 | -2/+2 |
|
|
* | Issue #13773: sqlite3.connect() gets a new `uri` parameter to pass the filena... | Antoine Pitrou | 2013-02-09 | 1 | -4/+12 |
|
|
* | Undocument and clean up sqlite3.OptimizedUnicode | Petri Lehtinen | 2012-02-09 | 1 | -8/+8 |
|
|
* | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -1/+1 |
|
|
* | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -1/+2 |
|
|
* | There was a possibility that the initialization of _sqlite, when it failed, | Brett Cannon | 2011-02-04 | 1 | -1/+1 |
|
|
* | Welcome to the UTF-8 world. | Florent Xicluna | 2010-09-03 | 1 | -1/+1 |
|
|
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -16/+16 |
|
|
* | Merged new pysqlite version 2.6.0 from trunk. | Gerhard Häring | 2010-03-05 | 1 | -1/+1 |
|
|
* | Merge revision 71222 from trunk: #5615: make it possible to configure --witho... | Georg Brandl | 2009-04-05 | 1 | -0/+2 |
|
|
* | Merged revisions 66394,66404,66412,66414,66424-66436 via svnmerge from | Benjamin Peterson | 2008-09-13 | 1 | -4/+4 |
|
|
* | Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-... | Georg Brandl | 2008-07-23 | 1 | -1/+4 |
|
|
* | Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,... | Benjamin Peterson | 2008-07-02 | 1 | -12/+52 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -3/+20 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -1/+1 |
|
|
* | Bring sqlite3 module up-to-date with what's now in 2.6. Almost. I intentionally | Gerhard Häring | 2008-03-29 | 1 | -22/+32 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -1/+1 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -1/+1 |
|
|