mirror of
https://github.com/python/cpython.git
synced 2025-09-14 20:56:06 +00:00
bpo-40810: Require SQLite 3.7.15 (GH-24106)
This commit is contained in:
parent
c7f8d3caf0
commit
cf0b23908c
9 changed files with 11 additions and 56 deletions
|
@ -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)')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue