summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3/test/dbapi.py
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2020-09-07 21:26:54 (GMT)
committerGitHub <noreply@github.com>2020-09-07 21:26:54 (GMT)
commit207c321f13cea3fee7f378057864e8c6453f5adf (patch)
tree394cd3a6f35d1f000e1b0602b3e4ba44151b9232 /Lib/sqlite3/test/dbapi.py
parent22748a83d927d3da1beaed771be30887c42b2500 (diff)
downloadcpython-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/dbapi.py')
-rw-r--r--Lib/sqlite3/test/dbapi.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/sqlite3/test/dbapi.py b/Lib/sqlite3/test/dbapi.py
index 119da12..a8dfeb9 100644
--- a/Lib/sqlite3/test/dbapi.py
+++ b/Lib/sqlite3/test/dbapi.py
@@ -185,12 +185,6 @@ class ConnectionTests(unittest.TestCase):
with self.assertRaises(sqlite.OperationalError):
cx.execute('insert into test(id) values(1)')
- @unittest.skipIf(sqlite.sqlite_version_info >= (3, 3, 1),
- 'needs sqlite versions older than 3.3.1')
- def CheckSameThreadErrorOnOldVersion(self):
- with self.assertRaises(sqlite.NotSupportedError) as cm:
- sqlite.connect(':memory:', check_same_thread=False)
- self.assertEqual(str(cm.exception), 'shared connections not available')
class CursorTests(unittest.TestCase):
def setUp(self):