summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-43265: Improve sqlite3.Connection.backup error handling (GH-24586)Erlend Egeberg Aasland2021-04-141-4/+1
* bpo-43752: Fix sqlite3 regression for zero-sized blobs with converters (GH-25...Erlend Egeberg Aasland2021-04-141-1/+3
* bpo-43369: sqlite3_column_{text,blob} failures now raise MemoryError (GH-24723)Erlend Egeberg Aasland2021-03-041-1/+22
* bpo-43368: Fix fetching empty bytes in sqlite3 (GH-24706)Mariusz Felisiak2021-03-031-0/+4
* bpo-43258: Don't allocate sqlite3 aggregate context for empty queries (GH-24569)Erlend Egeberg Aasland2021-02-191-0/+5
* bpo-40956: Fix segfault when Connection.backup is called without target (GH-2...Erlend Egeberg Aasland2021-02-101-1/+3
* bpo-24464: Fix sqlite3.enable_shared_cache() deprecation wrapper (GH-24170)Erlend Egeberg Aasland2021-01-092-1/+5
* bpo-42847: Normalise Lib/sqlite3/test/* file encodings (GH-24147)Erlend Egeberg Aasland2021-01-076-21/+15
* bpo-40823: Use loadTestsFromTestCase() iso. makeSuite() in sqlite3 tests (GH-...Erlend Egeberg Aasland2021-01-079-320/+343
* bpo-24464: Deprecate sqlite3.enable_shared_cache (GH-24008)Erlend Egeberg Aasland2021-01-062-0/+21
* bpo-40810: Require SQLite 3.7.15 (GH-24106)Erlend Egeberg Aasland2021-01-062-12/+0
* bpo-40810: Fix CheckTraceCallbackContent for SQLite pre 3.7.15 (GH-20530)Erlend Egeberg Aasland2021-01-041-0/+8
* bpo-42264: Deprecate sqlite3.OptimizedUnicode (GH-23163)Erlend Egeberg Aasland2020-11-172-3/+18
* bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)Peter McCormick2020-09-201-0/+7
* bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998)Serhiy Storchaka2020-09-172-1/+26
* bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)Erlend Egeberg Aasland2020-09-076-20/+0
* bpo-40275: Use new test.support helper submodules in tests (GH-21772)Hai Shi2020-08-071-1/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-21764)Hai Shi2020-08-071-1/+2
* bpo-40784: Fix sqlite3 deterministic test (GH-20448)Erlend Egeberg Aasland2020-05-281-9/+27
* bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. ...Serhiy Storchaka2020-03-212-4/+4
* bpo-38185: Fixed case-insensitive string comparison in sqlite3.Row indexing. ...Serhiy Storchaka2019-09-171-7/+18
* bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-16155)Serhiy Storchaka2019-09-161-7/+21
* closes bpo-37347: Fix refcount problem in sqlite3. (GH-14268)gescheit2019-07-131-58/+13
* bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386)Victor Stinner2019-06-262-3/+3
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Zackery Spytz2018-12-171-0/+4
* bpo-32788: Better error handling in sqlite3. (GH-3723)Serhiy Storchaka2018-12-101-3/+25
* bpo-34052: Prevent SQLite functions from setting callbacks on exceptions. (GH...Sergey Fedoseev2018-12-051-19/+64
* bpo-34041: Allow creating deterministic functions in Connection.create_functi...Sergey Fedoseev2018-07-081-0/+23
* Spelling fixes to docs, docstrings, and comments (GH-6374)Ville Skyttä2018-04-201-1/+1
* bpo-27645: Fix version number in 'database in transaction' fallback (GH-6131)Aviv Palivoda2018-03-181-3/+1
* bpo-27645: Skip test_bad_target_in_transaction if SQLite == 3.8.7.1 (GH-6067)Berker Peksag2018-03-111-0/+2
* bpo-27645: Add support for native backup facility of SQLite (GH-4238)Emanuele Gaifas2018-03-101-0/+162
* Remove unused var from CheckCancelOperation test (GH-4317)Simon Willison2017-11-071-2/+0
* bpo-31843: sqlite3.connect() now accepts PathLike objects as database name (#...Anders Lorentsen2017-11-071-0/+11
* bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor objec...Oren Milman2017-11-071-0/+3
* bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__(...Oren Milman2017-11-071-0/+18
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-5/+1
* bpo-26187: Test that set_trace_callback() is not called multiple times (GH-461)Aviv Palivoda2017-04-091-0/+20
* bpo-28518: Start a transaction implicitly before a DML statement (#245)Berker Peksag2017-02-261-0/+9
* Issue #29123: Merge from 3.5Berker Peksag2016-12-311-2/+1
|\
| * Issue #29123: Make CheckSqlTimestamp more robustBerker Peksag2016-12-311-2/+1
* | Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation()Serhiy Storchaka2016-09-261-0/+22
|\ \ | |/
| * Issue #27897: Fixed possible crash in sqlite3.Connection.create_collation()Serhiy Storchaka2016-09-261-0/+22
* | Issue #10740: sqlite3 no longer implicitly commit an open transaction before ...Berker Peksag2016-09-111-8/+28
* | Issue #21250: Merge from 3.5Berker Peksag2016-09-061-1/+100
|\ \ | |/
| * Issue #21250: Add tests for SQLite's ON CONFLICT clauseBerker Peksag2016-09-061-1/+100
* | Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_l...Serhiy Storchaka2016-09-011-4/+27
|\ \ | |/
| * Issue #27881: Fixed possible bugs when setting sqlite3.Connection.isolation_l...Serhiy Storchaka2016-09-011-4/+27
* | Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factorySerhiy Storchaka2016-08-291-3/+17
|\ \ | |/
| * Issue #27861: Fixed a crash in sqlite3.Connection.cursor() when a factorySerhiy Storchaka2016-08-291-3/+17