linuxOS_AP05/debian/base-linaro/binary/usr/lib/python3.7/dbm/gnu.py

7 lines
186 B
Python
Raw Normal View History

2025-09-26 01:40:02 +00:00
"""Provide the _gdbm module as a dbm submodule."""
try:
from _gdbm import *
except ImportError as msg:
raise ImportError(str(msg) + ', please install the python3-gdbm package')