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 df23c87 commit 767c8b0Copy full SHA for 767c8b0
Lib/test/test_dbm_sqlite3.py
@@ -7,6 +7,9 @@
7
from test.support import cpython_only, import_helper, os_helper
8
9
dbm_sqlite3 = import_helper.import_module("dbm.sqlite3")
10
+# N.B. The test will fail if the sqlite3 import is above the import of dbm.sqlite3.
11
+# This is deliberate: if the import helper managed to import dbm.sqlite3,
12
+# we must inevitably be able to import sqlite3. Else, we have a problem.
13
import sqlite3
14
from dbm.sqlite3 import _normalize_uri
15
0 commit comments