summaryrefslogtreecommitdiffstats
path: root/Lib/sqlite3/test/dbapi.py
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-01-06 00:02:43 (GMT)
committerGitHub <noreply@github.com>2021-01-06 00:02:43 (GMT)
commitcf0b23908cc902ac38cd83dd7ca5afdf89e1543b (patch)
tree213330fcd0db5954b3937e913a168fc7f68ebf4b /Lib/sqlite3/test/dbapi.py
parentc7f8d3caf0b10c19cd46b1b334a98628eac15672 (diff)
downloadcpython-cf0b23908cc902ac38cd83dd7ca5afdf89e1543b.zip
cpython-cf0b23908cc902ac38cd83dd7ca5afdf89e1543b.tar.gz
cpython-cf0b23908cc902ac38cd83dd7ca5afdf89e1543b.tar.bz2
bpo-40810: Require SQLite 3.7.15 (GH-24106)
Diffstat (limited to 'Lib/sqlite3/test/dbapi.py')
-rw-r--r--Lib/sqlite3/test/dbapi.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/sqlite3/test/dbapi.py b/Lib/sqlite3/test/dbapi.py
index 7867bf3..2b85ef9 100644
--- a/Lib/sqlite3/test/dbapi.py
+++ b/Lib/sqlite3/test/dbapi.py
@@ -172,10 +172,6 @@ class ConnectionTests(unittest.TestCase):
cx.execute('create table test(id integer)')
def CheckOpenUri(self):
- if sqlite.sqlite_version_info < (3, 7, 7):
- with self.assertRaises(sqlite.NotSupportedError):
- sqlite.connect(':memory:', uri=True)
- return
self.addCleanup(unlink, TESTFN)
with sqlite.connect(TESTFN) as cx:
cx.execute('create table test(id integer)')