Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
SQLite version is found in sqlite3.sqlite_version_info, not sqlite3.v…
…ersion_info
  • Loading branch information
Erlend E. Aasland committed Oct 7, 2021
commit 4f7c2c03bffbadbe366a37d605fc5d5783b82928
2 changes: 1 addition & 1 deletion Lib/sqlite3/test/test_dbapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def test_module_constants(self):
consts += ["SQLITE_NOTICE", "SQLITE_WARNING"]
if sqlite.version_info >= (3, 8, 3):
consts.append("SQLITE_RECURSIVE")
if sqlite.version_info >= (3, 8, 7):
if sqlite.sqlite_version_info >= (3, 8, 7):
consts.append("SQLITE_LIMIT_WORKER_THREADS")
consts += ["PARSE_DECLTYPES", "PARSE_COLNAMES"]
for const in consts:
Expand Down