]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
hush pyflakes warning about code that got moved in the recent StallMixin refactoring
authorBrian Warner <warner@allmydata.com>
Wed, 23 Apr 2008 00:14:26 +0000 (17:14 -0700)
committerBrian Warner <warner@allmydata.com>
Wed, 23 Apr 2008 00:14:26 +0000 (17:14 -0700)
src/allmydata/test/test_client.py
src/allmydata/test/test_dirnode.py
src/allmydata/test/test_system.py

index 9bb889db3af3833230e5f19c9669cb1adcd8a3e9..a8e169a029344f9de0921b8bfc75463f5addcdb7 100644 (file)
@@ -2,7 +2,6 @@
 import os
 from twisted.trial import unittest
 from twisted.application import service
-from twisted.internet import reactor, defer
 from twisted.python import log
 
 import allmydata
index 8522ea5a4135e6ae6b4b533c3992bc7a9b334bdd..918df62cd100d511c7343bb754d05f081c8a3de0 100644 (file)
@@ -8,7 +8,6 @@ from allmydata.interfaces import IURI, IClient, IMutableFileNode, \
 from allmydata.util import hashutil, testutil
 from allmydata.test.common import make_chk_file_uri, make_mutable_file_uri, \
      FakeDirectoryNode, create_chk_filenode
-from twisted.internet import defer, reactor
 
 # to test dirnode.py, we want to construct a tree of real DirectoryNodes that
 # contain pointers to fake files. We start with a fake MutableFileNode that
index 8ea19858334796ccbc07605d95f180c78a57814c..3596deaaf25f3a402832fb3f8c17b13bb6198a23 100644 (file)
@@ -3,7 +3,7 @@ from base64 import b32encode
 import os, sys, time, re, simplejson
 from cStringIO import StringIO
 from twisted.trial import unittest
-from twisted.internet import defer, reactor
+from twisted.internet import defer
 from twisted.internet import threads # CLI tests use deferToThread
 from twisted.internet.error import ConnectionDone, ConnectionLost
 from twisted.application import service