summaryrefslogtreecommitdiff
path: root/Lib/dbm/__init__.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-17 08:42:58 +0000
committerGeorg Brandl <georg@python.org>2009-05-17 08:42:58 +0000
commite2825a1fb0d6c2bd59aabcbb20eb4cd771ada63c (patch)
tree420298899b774e022f9a47ed0424aab831a145fd /Lib/dbm/__init__.py
parentbd344450d7ed9878dcce3236316405e3cfdab3b6 (diff)
downloadcpython-e2825a1fb0d6c2bd59aabcbb20eb4cd771ada63c.tar.gz
We dont have dbm.bsd support anymore.
Diffstat (limited to 'Lib/dbm/__init__.py')
-rw-r--r--Lib/dbm/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py
index 19a7072628..56555be78f 100644
--- a/Lib/dbm/__init__.py
+++ b/Lib/dbm/__init__.py
@@ -179,9 +179,9 @@ def whichdb(filename):
except struct.error:
return ""
- # Check for BSD hash
- if magic in (0x00061561, 0x61150600):
- return "dbm.bsd"
+ ## Check for BSD hash
+ #if magic in (0x00061561, 0x61150600):
+ # return "dbm.bsd"
# Unknown
return ""