summaryrefslogtreecommitdiffstats
path: root/Lib/dbm
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-09-03 22:59:38 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-09-03 22:59:38 (GMT)
commit6ba2332f55e1d4dc49470cfc68fcedb3b6d096f8 (patch)
tree992d78f3d12ec5184f775916e0cb6dbd9fd3e145 /Lib/dbm
parentc469d4c3aa0a66579d1927f0e5d9630b3ea4024f (diff)
downloadcpython-6ba2332f55e1d4dc49470cfc68fcedb3b6d096f8.zip
cpython-6ba2332f55e1d4dc49470cfc68fcedb3b6d096f8.tar.gz
cpython-6ba2332f55e1d4dc49470cfc68fcedb3b6d096f8.tar.bz2
clean up some more bsddb scraps
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)