aboutsummaryrefslogtreecommitdiffstats
path: root/test/http/test_semantics.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-10 20:36:47 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-10 20:36:47 +0200
commit476badf45cd085d69b6162cd48983e3cd22cefcc (patch)
tree0c7a52c4ae0d27b52bce0f93a8e244ed06dd91a1 /test/http/test_semantics.py
parent690b8b4f4e00d60b373b5a1481930f21bbc5054a (diff)
downloadmitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.tar.gz
mitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.tar.bz2
mitmproxy-476badf45cd085d69b6162cd48983e3cd22cefcc.zip
cleanup imports
Diffstat (limited to 'test/http/test_semantics.py')
-rw-r--r--test/http/test_semantics.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/http/test_semantics.py b/test/http/test_semantics.py
index 59364eae..7ef69dcf 100644
--- a/test/http/test_semantics.py
+++ b/test/http/test_semantics.py
@@ -1,13 +1,11 @@
-import cStringIO
-import textwrap
-import binascii
import mock
-from mock import MagicMock
-from netlib import http, odict, tcp, tutils, utils
+from netlib import http
+from netlib import odict
+from netlib import tutils
+from netlib import utils
from netlib.http import semantics
from netlib.http.semantics import CONTENT_MISSING
-from .. import tservers
class TestProtocolMixin(object):
@mock.patch("netlib.http.semantics.ProtocolMixin.assemble_response")