summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2003-05-06 20:37:56 (GMT)
committerSkip Montanaro <skip@pobox.com>2003-05-06 20:37:56 (GMT)
commit6967f2c2e9d4079297558fa96b0b9bf1d0a3d27b (patch)
treed714af7c080182f460e57b2909d94b98eb2a72c8 /Lib
parentf0776d2992cef19ebf23793c2509330200de08ac (diff)
downloadcpython-6967f2c2e9d4079297558fa96b0b9bf1d0a3d27b.zip
cpython-6967f2c2e9d4079297558fa96b0b9bf1d0a3d27b.tar.gz
cpython-6967f2c2e9d4079297558fa96b0b9bf1d0a3d27b.tar.bz2
don't need to worry about file endianness
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_bsddb185.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_bsddb185.py b/Lib/test/test_bsddb185.py
index 48a0764..c7eac3f 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()