Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid using dbm.sqlite3 (bbangert#242)
Python 3.13 added a new dbm backend, dbm.sqlite3, as the most- preferred choice when you do `import dbm`. This backend causes our test suite to fail with sqlite3 threading violations. This tweaks our dbm loading to just skip sqlite3 and try the other possible backends in the same order as Python < 3.13 did. Signed-off-by: Adam Williamson <[email protected]>
- Loading branch information