From da47001724cf935cca1e3a7b38a594ea2fe59ed0 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 11 Jan 1997 19:22:11 +0000 Subject: Use new struct which supports standardized sizes --- Lib/whichdb.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Lib/whichdb.py') diff --git a/Lib/whichdb.py b/Lib/whichdb.py index 3722e41b96..8985062d5d 100644 --- a/Lib/whichdb.py +++ b/Lib/whichdb.py @@ -41,12 +41,9 @@ def whichdb(filename): # Convert to 4-byte int in native byte order -- return "" if impossible try: - (magic,) = struct.unpack("l", s) + (magic,) = struct.unpack("=l", s) except struct.error: - try: - (magic,) = struct.unpack("i", s) - except struct.error: - return "" + return "" # Check for GNU dbm if magic == 0x13579ace: -- cgit v1.2.1