From: Skip Montanaro Date: Tue, 6 May 2003 20:37:56 +0000 (+0000) Subject: don't need to worry about file endianness X-Git-Tag: v2.3c1~833 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6967f2c2e9d4079297558fa96b0b9bf1d0a3d27b;p=python don't need to worry about file endianness --- diff --git a/Lib/test/test_bsddb185.py b/Lib/test/test_bsddb185.py index 48a07641a7..c7eac3f2cc 100644 --- a/Lib/test/test_bsddb185.py +++ b/Lib/test/test_bsddb185.py @@ -10,7 +10,6 @@ import tempfile class Bsddb185Tests(unittest.TestCase): def test_open_existing_hash(self): "verify we can open a file known to be a hash v2 file" - # do we need to worry about big vs little endian? db = bsddb185.hashopen(findfile("185test.db")) self.assertEqual(db["1"], "1") db.close()