summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sqlite3
Commit message (Expand)AuthorAgeFilesLines
* add missing gc_collect() calls in sqlite3 tests (#127446)CF Bolz-Tereick2024-12-021-0/+2
* gh-91818: Use default program name in the CLI of many modules (GH-124867)Serhiy Storchaka2024-10-091-1/+3
* gh-123849: Fix test_sqlite3.test_table_dump when foreign keys are enabled by ...Mariusz Felisiak2024-10-081-1/+2
* gh-95144: Improve error message of `... in None` (GH-119888)Zachary Ware2024-07-121-1/+1
* gh-118928: sqlite3: disallow sequences of params with named placeholders (#11...Erlend E. Aasland2024-05-141-2/+1
* gh-118924: Remove `sqlite3.version` and `sqlite3.version_info` (#118925)Hugo van Kemenade2024-05-101-11/+0
* gh-118406: Add signature for sqlite3.Connection objects (#118428)Erlend E. Aasland2024-04-301-0/+5
* gh-118221: Always use the default row factory in sqlite3.iterdump() (#118223)Erlend E. Aasland2024-04-251-0/+15
* gh-117995: Don't raise DeprecationWarnings for indexed nameless params (#118001)Erlend E. Aasland2024-04-221-0/+14
* gh-116303: Skip test module dependent tests if test modules are unavailable (...Erlend E. Aasland2024-04-031-7/+11
* gh-91602: Add iterdump() support for filtering database objects (#114501)Mariusz Felisiak2024-02-061-0/+70
* gh-114099: Add test exclusions to support running the test suite on iOS (#114...Russell Keith-Magee2024-02-051-3/+3
* gh-108364: In sqlite3, disable foreign keys before dumping SQL schema (#113957)Mariusz Felisiak2024-01-121-3/+11
* gh-109653: Remove unused imports in the `Lib/` directory (#109803)Alex Waygood2023-09-243-3/+1
* gh-108590: Revert gh-108657 (commit 400a1cebc) (#108686)Erlend E. Aasland2023-08-301-15/+0
* gh-108590: Fix sqlite3.iterdump for invalid Unicode in TEXT columns (#108657)Corvin2023-08-301-0/+15
* gh-108278: Deprecate passing the first param of sqlite3.Connection callback A...Erlend E. Aasland2023-08-292-0/+57
* gh-108617: Extend interactive session tests for sqlite3 (GH-108556)Serhiy Storchaka2023-08-291-6/+32
* gh-108558: Improve sqlite3 row factory tests (#108578)Edward Schauman-Haigh2023-08-291-14/+14
* gh-108278: Deprecate passing the three first params as keyword args for sqlit...Erlend E. Aasland2023-08-281-0/+23
* gh-108550: Speed up sqlite3 tests (#108551)Erlend E. Aasland2023-08-283-98/+68
* gh-64662: Add virtual table support to sqlite3.Connection.iterdump (#108340)Erlend E. Aasland2023-08-271-0/+20
* gh-105539: Fix ResourceWarning from unclosed SQLite connections in test_sqlit...Mariusz Felisiak2023-08-232-4/+4
* gh-105539: Emit ResourceWarning if sqlite3 database is not closed explicitly ...Erlend E. Aasland2023-08-221-0/+6
* gh-105539: Explict resource management for connection objects in sqlite3 test...Erlend E. Aasland2023-08-179-387/+373
* gh-93057: Deprecate positional use of optional sqlite3.connect() params (#107...Erlend E. Aasland2023-08-152-1/+23
* gh-105875: Require SQLite 3.15.2 or newer (#105876)Erlend E. Aasland2023-06-185-78/+38
* gh-105557: Remove duplicate sqlite3 test method (#105558)Erlend E. Aasland2023-06-091-7/+2
* gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds...Erlend E. Aasland2023-05-071-0/+8
* GH-103857: Deprecate utcnow and utcfromtimestamp (#103858)Paul Ganssle2023-04-271-1/+1
* gh-103489: Add get/set config methods to sqlite3.Connection (#103506)Erlend E. Aasland2023-04-261-0/+24
* GH-103805: Lib test f541 linting issue fix (#103812)Rodolfo M. Pereira2023-04-242-4/+4
* gh-101947: Remove size check from sqlite3 serialize test (#102914)Erlend E. Aasland2023-03-221-1/+0
* gh-101693: In sqlite3, deprecate using named placeholders with parameters sup...Erlend E. Aasland2023-02-151-0/+15
* gh-100553: Improve accuracy of sqlite3.Row iter test (#100555)Nikita Sobolev2022-12-281-2/+8
* gh-99659: Use correct exceptions in sqlite3 bigmem tests (#99660)Ɓukasz Langa2022-11-211-4/+4
* gh-83638: Add sqlite3.Connection.autocommit for PEP 249 compliant behaviour (...Erlend E. Aasland2022-11-121-0/+173
* gh-77617: Add sqlite3 command-line interface (#95026)Erlend Egeberg Aasland2022-08-011-0/+155
* gh-95132: Correctly relay *args and **kwds from sqlite3.connect to factory (#...Erlend Egeberg Aasland2022-07-231-0/+20
* gh-90016: Deprecate default sqlite3 adapters and converters (#94276)Erlend Egeberg Aasland2022-07-202-11/+26
* gh-94998: Remove redundant condition in test_sqlite3/__main__.py (#95052)Erlend Egeberg Aasland2022-07-201-2/+1
* gh-93370: Don't print deprecated pysqlite version in test_sqlite3 (#95017)Erlend Egeberg Aasland2022-07-191-3/+1
* gh-84461: Fix test_sqlite for Emscripten/WASI (#94125)Christian Heimes2022-06-231-1/+8
* gh-84623: Remove unused imports (#94132)Victor Stinner2022-06-221-1/+1
* gh-94028: Clear and reset sqlite3 statements properly in cursor iternext (GH-...Erlend Egeberg Aasland2022-06-211-0/+39
* gh-79009: sqlite3.iterdump now correctly handles tables with autoincrement (#...itssme2022-06-191-0/+47
* gh-93795: Use test.support TESTFN/unlink in sqlite3 tests (#93796)Erlend Egeberg Aasland2022-06-141-17/+15
* gh-79579: Improve DML query detection in sqlite3 (#93623)Erlend Egeberg Aasland2022-06-141-10/+56
* gh-84623: Remove unused imports in tests (#93772)Victor Stinner2022-06-131-1/+0
* gh-93421: Update sqlite3 cursor.rowcount only after SQLITE_DONE (#93526)Erlend Egeberg Aasland2022-06-081-0/+8