From: Georg Brandl Date: Sun, 17 May 2009 08:42:58 +0000 (+0000) Subject: We dont have dbm.bsd support anymore. X-Git-Tag: v3.1rc1~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=170fb040384ee629a5c02cbdba2670675f5659fc;p=thirdparty%2FPython%2Fcpython.git We dont have dbm.bsd support anymore. --- diff --git a/Lib/dbm/__init__.py b/Lib/dbm/__init__.py index 19a7072628c3..56555be78f33 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 ""