summaryrefslogtreecommitdiff
path: root/Lib/whichdb.py
diff options
context:
space:
mode:
authorMoshe Zadka <moshez@math.huji.ac.il>2000-07-29 05:31:40 +0000
committerMoshe Zadka <moshez@math.huji.ac.il>2000-07-29 05:31:40 +0000
commit7a4409c1b2e16fa2a4a6dbc93d67746dbbab4b5c (patch)
tree055f2e3446253f264ee6b2fbfd0c94d627bd7e94 /Lib/whichdb.py
parent37c03ff3a95d5518d54364e232c35c50ab469edb (diff)
downloadcpython-git-7a4409c1b2e16fa2a4a6dbc93d67746dbbab4b5c.tar.gz
Added support to recognize Python's internal "dumbdbm" database.
This closes bug 200 on Jitterbug.
Diffstat (limited to 'Lib/whichdb.py')
-rw-r--r--Lib/whichdb.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/Lib/whichdb.py b/Lib/whichdb.py
index 4dd4e3a373..5806118fc9 100644
--- a/Lib/whichdb.py
+++ b/Lib/whichdb.py
@@ -25,6 +25,18 @@ def whichdb(filename):
except IOError:
pass
+ # Check for dumbdbm next -- this has a .dir and and a .dat file
+ f = open(filename + ".dat", "rb")
+ f.close()
+ f = open(filename + ".dir", "rb")
+ try:
+ if f.read(1) in ["'", '"']:
+ return "dumbdbm"
+ finally:
+ f.close()
+ except IOError:
+ pass
+
# See if the file exists, return None if not
try:
f = open(filename, "rb")