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 768aaf6 commit 8deb7afCopy full SHA for 8deb7af
Lib/sqlite3/test/test_dbapi.py
@@ -168,9 +168,9 @@ def test_module_constants(self):
168
"SQLITE_TRANSACTION",
169
"SQLITE_UPDATE",
170
]
171
- if sqlite.version_info >= (3, 7, 17):
+ if sqlite.sqlite_version_info >= (3, 7, 17):
172
consts += ["SQLITE_NOTICE", "SQLITE_WARNING"]
173
- if sqlite.version_info >= (3, 8, 3):
+ if sqlite.sqlite_version_info >= (3, 8, 3):
174
consts.append("SQLITE_RECURSIVE")
175
consts += ["PARSE_DECLTYPES", "PARSE_COLNAMES"]
176
for const in consts:
0 commit comments