summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3/test/dbapi.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-45181: Simplify loading sqlite3 tests (GH-28304)Serhiy Storchaka2021-09-131-1183/+0
* bpo-45041: Increase coverage for sqlite3.Cursor.executescript() (GH-28074)Erlend Egeberg Aasland2021-08-301-0/+7
* bpo-16379: expose SQLite error codes and error names in `sqlite3` (GH-27786)Erlend Egeberg Aasland2021-08-301-2/+85
* bpo-25130: Make SQLite tests more compatible with PyPy (GH-28021)Serhiy Storchaka2021-08-291-0/+3
* bpo-27334: roll back transaction if sqlite3 context manager fails to commit (...Erlend Egeberg Aasland2021-08-251-1/+79
* bpo-44859: Improve error handling in sqlite3 and and raise more accurate exce...Serhiy Storchaka2021-08-081-3/+30
* bpo-31746: Prevent segfaults when sqlite3.Connection is uninitialised (GH-27431)Erlend Egeberg Aasland2021-07-291-0/+21
* bpo-44491: Allow clearing the sqlite3 authoriser callback (GH-26863)Erlend Egeberg Aasland2021-06-241-0/+1
* bpo-43553: Improve `sqlite3` test coverage (GH-26886)Erlend Egeberg Aasland2021-06-241-2/+24
* bpo-42064: Move `sqlite3` exceptions to global state, part 1 of 2 (GH-26745)Erlend Egeberg Aasland2021-06-231-0/+18
* bpo-44430: Refactor `sqlite3` threading tests (GH-26748)Erlend Egeberg Aasland2021-06-201-140/+36
* bpo-44087: Disallow instantiation of sqlite3.Statement (GH-26567)Erlend Egeberg Aasland2021-06-201-0/+5
* bpo-40956: Convert sqlite3.connect and sqlite3.Connection.__init__ to AC (GH-...Erlend Egeberg Aasland2021-06-201-0/+21
* bpo-44041: Add test for sqlite3 column count (GH-25907)Erlend Egeberg Aasland2021-06-041-0/+11
* bpo-42213: Remove redundant cyclic GC hack in sqlite3 (GH-26517)Erlend Egeberg Aasland2021-06-031-13/+26
* bpo-42213: Check connection in sqlite3.Connection.__enter__ (GH-26512)Erlend Egeberg Aasland2021-06-031-0/+20
* bpo-24464: Fix sqlite3.enable_shared_cache() deprecation wrapper (GH-24170)Erlend Egeberg Aasland2021-01-091-0/+4
* bpo-42847: Normalise Lib/sqlite3/test/* file encodings (GH-24147)Erlend Egeberg Aasland2021-01-071-2/+1
* bpo-40823: Use loadTestsFromTestCase() iso. makeSuite() in sqlite3 tests (GH-...Erlend Egeberg Aasland2021-01-071-128/+128
* bpo-24464: Deprecate sqlite3.enable_shared_cache (GH-24008)Erlend Egeberg Aasland2021-01-061-0/+7
* bpo-40810: Require SQLite 3.7.15 (GH-24106)Erlend Egeberg Aasland2021-01-061-4/+0
* bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998)Serhiy Storchaka2020-09-171-1/+13
* bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)Erlend Egeberg Aasland2020-09-071-6/+0
* bpo-40275: Use new test.support helper submodules in tests (GH-21772)Hai Shi2020-08-071-1/+1
* bpo-37406: sqlite3 raises TypeError for wrong operation type (GH-14386)Victor Stinner2019-06-261-2/+2
* Spelling fixes to docs, docstrings, and comments (GH-6374)Ville Skyttä2018-04-201-1/+1
* bpo-31843: sqlite3.connect() now accepts PathLike objects as database name (#...Anders Lorentsen2017-11-071-0/+11
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-5/+1
* 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 #16864: Cursor.lastrowid now supports REPLACE statementBerker Peksag2016-06-141-1/+42
|/
* Mark tests as skipped when a SQLite version is not supportedBerker Peksag2016-06-141-2/+2
* Remove empty setUp and tearDown methods from sqlite3 testsBerker Peksag2016-06-141-12/+0
* Replace more boilerplate code with modern unittest features in sqlite3 testsBerker Peksag2016-06-131-2/+1
* Modernize sqlite3 testsBerker Peksag2016-06-121-145/+27
* Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1Berker Peksag2016-06-121-0/+6
* Issue #27188: Fix various sqlite3 documentation errorsBerker Peksag2016-06-121-0/+12
* Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-1/+1
* Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-141-1/+1
* Issue #13773: sqlite3.connect() gets a new `uri` parameter to pass the filena...Antoine Pitrou2013-02-091-0/+18
* Make sqlite3 tests editable with EmacsPetri Lehtinen2012-02-021-1/+1
* sqlite3: Handle strings with embedded zeros correctlyPetri Lehtinen2012-02-011-0/+7
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-1/+1
* #8845: expose sqlite3 inTransaction as RO in_transaction Connection attribute.R. David Murray2010-06-011-0/+23
* Merged revisions 80552-80556,80564-80566,80568-80571 via svnmerge fromVictor Stinner2010-04-281-1/+5
* Merged new pysqlite version 2.6.0 from trunk.Gerhard Häring2010-03-051-7/+104
* change deprecated unittest method calls into their proper names.Gregory P. Smith2009-07-041-46/+46
* Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,...Georg Brandl2008-06-101-0/+9
* Bring sqlite3 module up-to-date with what's now in 2.6. Almost. I intentionallyGerhard Häring2008-03-291-15/+36
* Breaking ground for PEP 3137 implementation:Guido van Rossum2007-10-081-1/+1