summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3/test/transactions.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged code from pysqlite 2.6.0.Gerhard Häring2010-03-051-0/+20
|
* Merge r73838 from py3k branch. Use the nondeprecated unittest methodGregory P. Smith2009-07-041-10/+10
| | | | names.
* Prevent test_sqlite from hanging on older versions of sqlite.Neal Norwitz2008-04-051-0/+8
| | | | | | | | | | The problem is that when trying to do the second insert, sqlite seems to sleep for a very long time. Here is the output from strace: read(6, "SQLite format 3\0\4\0\1\1\0@ \0\0\0\1\0\0\0\0"..., 1024) = 1024 nanosleep({4294, 966296000}, <unfinished ...> I don't know which version this was fixed in, but 3.2.1 definitely fails.
* Catch OSError when trying to remove a file in case removal fails. ThisNeal Norwitz2008-03-051-2/+5
| | | | should prevent a failure in tearDown masking any real test failure.
* Updated to pysqlite 2.4.1. Documentation additions will come later.Gerhard Häring2008-02-291-1/+19
|
* Update to pysqlite 2.2.0Anthony Baxter2006-04-041-1/+3
|
* merged the sqlite-integration branch.Anthony Baxter2006-04-011-0/+154
This is based on pysqlite2.1.3, and provides a DB-API interface in the standard library. You'll need sqlite 3.2.2 or later to build this - if you have an earlier version, the C extension module will not be built.