diff options
author | Erlend E. Aasland <erlend@python.org> | 2024-02-14 13:47:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-14 13:47:19 (GMT) |
commit | 6d9141ed766f4003f39362937dc397e9f734c7e5 (patch) | |
tree | dd020b9391352cf7a5fc281370b443d83ad0a934 /Lib | |
parent | ec8909a23931338f81803ea3f18dc2073f74a152 (diff) | |
download | cpython-6d9141ed766f4003f39362937dc397e9f734c7e5.zip cpython-6d9141ed766f4003f39362937dc397e9f734c7e5.tar.gz cpython-6d9141ed766f4003f39362937dc397e9f734c7e5.tar.bz2 |
gh-100414: Make dbm.sqlite3 the preferred dbm backend (#115447)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/dbm/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py index 97c0bb1..4fdbc54 100644 --- a/Lib/dbm/__init__.py +++ b/Lib/dbm/__init__.py @@ -38,7 +38,7 @@ import sys class error(Exception): pass -_names = ['dbm.gnu', 'dbm.ndbm', 'dbm.sqlite3', 'dbm.dumb'] +_names = ['dbm.sqlite3', 'dbm.gnu', 'dbm.ndbm', 'dbm.dumb'] _defaultmod = None _modules = {} |