]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
fix a few unused imports and suchlike, discovered by pyflakes
authorZooko O'Whielacronx <zooko@zooko.com>
Wed, 13 Feb 2008 14:38:08 +0000 (07:38 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Wed, 13 Feb 2008 14:38:08 +0000 (07:38 -0700)
src/allmydata/scripts/debug.py
src/allmydata/test/test_base62.py
src/allmydata/test/test_helper.py
src/allmydata/util/base62.py

index 36bef83635648dfc99157385612c82334be58195..12a53441addcc4a03cb9fab0c6deaf1c2ef84173 100644 (file)
@@ -328,7 +328,6 @@ def find_shares(config, out=sys.stdout, err=sys.stderr):
     /home/warner/testnet/node-2/storage/shares/44k/44kai1tui348689nrw8fjegc8c/2
     """
     from allmydata import storage
-    from allmydata.util import idlib
 
     sharedir = storage.storage_index_to_dir(storage.si_a2b(config.si_s))
     for d in config.nodedirs:
index 833d96a8388067c38c61036d83d586bc3016a317..83fb7402386c922f008c17302a1eef581fe2da1a 100644 (file)
@@ -37,9 +37,6 @@ class T(unittest.TestCase):
     def test_ende_0x0100(self):
         return self._test_ende('\x01\x00')
 
-    def test_ende_0x010000(self):
-        return self._test_ende('\x01\x00\x00')
-
     def test_ende_0x000000(self):
         return self._test_ende('\x00\x00\x00')
 
@@ -70,7 +67,7 @@ class T(unittest.TestCase):
             assert bs == bs2l
 
 def suite():
-    suite = unittest.makeSuite(base62TestCase, 'test')
+    suite = unittest.makeSuite(T, 'test')
     return suite
 
 if __name__ == "__main__":
index 31468fff33130ba9651c280e8951d5b9e823933e..9b0d0b0ce80a091f5ba74b6910953a3b992f945c 100644 (file)
@@ -7,7 +7,7 @@ from foolscap import Tub, eventual
 from foolscap.logging import log
 
 from allmydata import offloaded, storage, upload
-from allmydata.util import hashutil, fileutil, idlib, mathutil
+from allmydata.util import hashutil, fileutil, mathutil
 from pycryptopp.cipher.aes import AES
 
 MiB = 1024*1024
index 638d045c0175961ff8b566e951f2319c45e6fe0a..473cadcdccf84f1ffe7eeaf607504881f0dfc0b1 100644 (file)
@@ -9,7 +9,7 @@
 # from the Python Standard Library
 import string
 
-from allmydata.util.mathutil import div_ceil, log_ceil, log_floor
+from allmydata.util.mathutil import log_ceil, log_floor
 
 chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"