diff options
author | Erlend Egeberg Aasland <erlend.aasland@innova.no> | 2020-09-07 21:26:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-07 21:26:54 (GMT) |
commit | 207c321f13cea3fee7f378057864e8c6453f5adf (patch) | |
tree | 394cd3a6f35d1f000e1b0602b3e4ba44151b9232 /Lib/sqlite3/test/transactions.py | |
parent | 22748a83d927d3da1beaed771be30887c42b2500 (diff) | |
download | cpython-207c321f13cea3fee7f378057864e8c6453f5adf.zip cpython-207c321f13cea3fee7f378057864e8c6453f5adf.tar.gz cpython-207c321f13cea3fee7f378057864e8c6453f5adf.tar.bz2 |
bpo-40744: Drop support for SQLite pre 3.7.3 (GH-20909)
Remove code required to support SQLite pre 3.7.3.
Co-written-by: Berker Peksag <berker.peksag@gmail.com>
Co-written-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
Diffstat (limited to 'Lib/sqlite3/test/transactions.py')
-rw-r--r-- | Lib/sqlite3/test/transactions.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/sqlite3/test/transactions.py b/Lib/sqlite3/test/transactions.py index b8a13de..c463f74 100644 --- a/Lib/sqlite3/test/transactions.py +++ b/Lib/sqlite3/test/transactions.py @@ -111,16 +111,12 @@ class TransactionTests(unittest.TestCase): res = self.cur2.fetchall() self.assertEqual(len(res), 1) - @unittest.skipIf(sqlite.sqlite_version_info < (3, 2, 2), - 'test hangs on sqlite versions older than 3.2.2') def CheckRaiseTimeout(self): self.cur1.execute("create table test(i)") self.cur1.execute("insert into test(i) values (5)") with self.assertRaises(sqlite.OperationalError): self.cur2.execute("insert into test(i) values (5)") - @unittest.skipIf(sqlite.sqlite_version_info < (3, 2, 2), - 'test hangs on sqlite versions older than 3.2.2') def CheckLocking(self): """ This tests the improved concurrency with pysqlite 2.3.4. You needed |