summaryrefslogtreecommitdiffstats
path: root/Lib/dbm
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/dbm')
-rw-r--r--Lib/dbm/bsd.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/Lib/dbm/bsd.py b/Lib/dbm/bsd.py
deleted file mode 100644
index 2dccadb..0000000
--- a/Lib/dbm/bsd.py
+++ /dev/null
@@ -1,11 +0,0 @@
-"""Provide a (g)dbm-compatible interface to bsddb.hashopen."""
-
-import bsddb
-
-__all__ = ["error", "open"]
-
-class error(bsddb.error, IOError):
- pass
-
-def open(file, flag = 'r', mode=0o666):
- return bsddb.hashopen(file, flag, mode)