[Python-checkins] r72711 - python/branches/py3k/Lib/dbm/__init__.py

georg.brandl python-checkins at python.org
Sun May 17 10:42:58 CEST 2009


Author: georg.brandl
Date: Sun May 17 10:42:58 2009
New Revision: 72711

Log:
We dont have dbm.bsd support anymore.

Modified:
   python/branches/py3k/Lib/dbm/__init__.py

Modified: python/branches/py3k/Lib/dbm/__init__.py
==============================================================================
--- python/branches/py3k/Lib/dbm/__init__.py	(original)
+++ python/branches/py3k/Lib/dbm/__init__.py	Sun May 17 10:42:58 2009
@@ -179,9 +179,9 @@
     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 ""


More information about the Python-checkins mailing list