Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7aed41 commit 7280a4eCopy full SHA for 7280a4e
1 file changed
Lib/sqlite3/test/backup.py
@@ -37,6 +37,8 @@ def test_bad_target_closed_connection(self):
37
self.cx.backup(bck)
38
39
def test_bad_target_in_transaction(self):
40
+ if sqlite.sqlite_version_info == (3, 8, 7, 1):
41
+ self.skipTest('skip until we debug https://bugs.python.org/issue27645#msg313562')
42
bck = sqlite.connect(':memory:')
43
bck.execute('CREATE TABLE bar (key INTEGER)')
44
bck.executemany('INSERT INTO bar (key) VALUES (?)', [(3,), (4,)])
0 commit comments