aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-10-17 10:32:12 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-10-17 10:32:12 +0200
commit94c9dd66e6b09601840760dc35de079c851f3c3f (patch)
tree09c886e106f4c67695bd25fede056fe93d62f373 /netlib/http
parente59a3be09d9f044572ce97a5f683707927fff863 (diff)
downloadmitmproxy-94c9dd66e6b09601840760dc35de079c851f3c3f.tar.gz
mitmproxy-94c9dd66e6b09601840760dc35de079c851f3c3f.tar.bz2
mitmproxy-94c9dd66e6b09601840760dc35de079c851f3c3f.zip
remove empty lines at beginning of file
Diffstat (limited to 'netlib/http')
-rw-r--r--netlib/http/headers.py1
-rw-r--r--netlib/http/http1/assemble.py1
-rw-r--r--netlib/http/http2/__init__.py1
-rw-r--r--netlib/http/message.py1
-rw-r--r--netlib/http/request.py1
-rw-r--r--netlib/http/response.py1
-rw-r--r--netlib/http/status_codes.py1
-rw-r--r--netlib/http/user_agents.py1
8 files changed, 0 insertions, 8 deletions
diff --git a/netlib/http/headers.py b/netlib/http/headers.py
index b620c2c7..39673f1a 100644
--- a/netlib/http/headers.py
+++ b/netlib/http/headers.py
@@ -1,4 +1,3 @@
-
import re
import collections
diff --git a/netlib/http/http1/assemble.py b/netlib/http/http1/assemble.py
index 737a4ec9..3d65da34 100644
--- a/netlib/http/http1/assemble.py
+++ b/netlib/http/http1/assemble.py
@@ -1,4 +1,3 @@
-
import netlib.http.url
from netlib import exceptions
diff --git a/netlib/http/http2/__init__.py b/netlib/http/http2/__init__.py
index c99eb6cb..20cc63a0 100644
--- a/netlib/http/http2/__init__.py
+++ b/netlib/http/http2/__init__.py
@@ -1,4 +1,3 @@
-
from netlib.http.http2.framereader import read_raw_frame, parse_frame
from netlib.http.http2.utils import parse_headers
diff --git a/netlib/http/message.py b/netlib/http/message.py
index aa37cc58..1980b0ab 100644
--- a/netlib/http/message.py
+++ b/netlib/http/message.py
@@ -1,4 +1,3 @@
-
import re
import warnings
from typing import Optional
diff --git a/netlib/http/request.py b/netlib/http/request.py
index a9896ec7..dd6f4164 100644
--- a/netlib/http/request.py
+++ b/netlib/http/request.py
@@ -1,4 +1,3 @@
-
import re
import urllib
diff --git a/netlib/http/response.py b/netlib/http/response.py
index 81beb81d..a8b48be0 100644
--- a/netlib/http/response.py
+++ b/netlib/http/response.py
@@ -1,4 +1,3 @@
-
import time
from email.utils import parsedate_tz, formatdate, mktime_tz
from netlib import human
diff --git a/netlib/http/status_codes.py b/netlib/http/status_codes.py
index 55d337be..5a83cd73 100644
--- a/netlib/http/status_codes.py
+++ b/netlib/http/status_codes.py
@@ -1,4 +1,3 @@
-
CONTINUE = 100
SWITCHING = 101
OK = 200
diff --git a/netlib/http/user_agents.py b/netlib/http/user_agents.py
index 4fd02e89..d0ca2f21 100644
--- a/netlib/http/user_agents.py
+++ b/netlib/http/user_agents.py
@@ -1,4 +1,3 @@
-
"""
A small collection of useful user-agent header strings. These should be
kept reasonably current to reflect common usage.