]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
storage/mutable.py: special characters in struct.foo arguments indicate standard...
authorwilcoxjg <wilcoxjg@gmail.com>
Thu, 1 Sep 2011 08:41:44 +0000 (01:41 -0700)
committerwilcoxjg <wilcoxjg@gmail.com>
Thu, 1 Sep 2011 08:41:44 +0000 (01:41 -0700)
src/allmydata/storage/mutable.py

index 6282af596693dfe7c2947d8ed210f995c322d66b..e21c41dd98e60f771697f45ceb7332340a7aa663 100644 (file)
@@ -28,8 +28,8 @@ from allmydata.storage.common import UnknownMutableContainerVersionError, \
 # 9   ??        n*92    extra leases
 
 
-assert struct.calcsize("L"), 4 # The struct module doc says that L's are 4 bytes in size.
-assert struct.calcsize("Q"), 8 # The struct module doc says that Q's are 8 bytes in size (at least with big-endian ordering).
+assert struct.calcsize(">L") == 4 # The struct module doc says that L's are 4 bytes in size.
+assert struct.calcsize(">Q") == 8 # The struct module doc says that Q's are 8 bytes in size (at least with big-endian ordering).
 
 class MutableShareFile: