aboutsummaryrefslogtreecommitdiffstats
path: root/netlib
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-02-02 17:39:49 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-02-02 17:39:49 +0100
commite222858f01095c61178590123eea7b49b5d7853b (patch)
tree8fb5446be5462adf58dfe7e1fa48ae7511721f0d /netlib
parent81b32cf42629dcbe8f59633dcb9b62816b781968 (diff)
downloadmitmproxy-e222858f01095c61178590123eea7b49b5d7853b.tar.gz
mitmproxy-e222858f01095c61178590123eea7b49b5d7853b.tar.bz2
mitmproxy-e222858f01095c61178590123eea7b49b5d7853b.zip
bump dependency and remove deprecated fields
Diffstat (limited to 'netlib')
-rw-r--r--netlib/http/http2/connections.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/netlib/http/http2/connections.py b/netlib/http/http2/connections.py
index 91133121..5e877286 100644
--- a/netlib/http/http2/connections.py
+++ b/netlib/http/http2/connections.py
@@ -8,11 +8,6 @@ from .. import Headers, Response, Request
from hyperframe import frame
-# TODO: remove once hyperframe released a new version > 3.1.1
-# wrapper for deprecated name in old hyperframe release
-frame.SettingsFrame.MAX_FRAME_SIZE = frame.SettingsFrame.SETTINGS_MAX_FRAME_SIZE
-frame.SettingsFrame.MAX_HEADER_LIST_SIZE = frame.SettingsFrame.SETTINGS_MAX_HEADER_LIST_SIZE
-
class TCPHandler(object):