Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Fix for python 3.7-3.9 #426

Open
wants to merge 5 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ Using ``hyper`` with requests is super simple::
>>> import requests
>>> from hyper.contrib import HTTP20Adapter
>>> s = requests.Session()
>>> s.mount('https://http2bin.org', HTTP20Adapter())
>>> r = s.get('https://http2bin.org/get')
>>> s.mount('https://', HTTP20Adapter())
>>> r = s.get('https://httpbin.org/get')
>>> print(r.status_code)
200

Expand Down
8 changes: 6 additions & 2 deletions hyper/common/headers.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@

Contains hyper's structures for storing and working with HTTP headers.
"""
import collections
try:
from collections.abc import MutableMapping
except ImportError: # pragma: no cover
# Python 2.7 compatibility
from collections import MutableMapping

from hyper.common.util import to_bytestring, to_bytestring_tuple


class HTTPHeaderMap(collections.MutableMapping):
class HTTPHeaderMap(MutableMapping):
"""
A structure that contains HTTP headers.

Expand Down
9 changes: 6 additions & 3 deletions hyper/http11/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@
import socket
import base64

from collections import Iterable, Mapping
try:
from collections.abc import Iterable, Mapping
except ImportError: # pragma: no cover
# Python 2.7 compatibility
from collections import Iterable, Mapping

import collections
from hyperframe.frame import SettingsFrame

from .response import HTTP11Response
Expand Down Expand Up @@ -390,7 +393,7 @@ def _send_body(self, body, body_type):
return

# Iterables that set a specific content length.
elif isinstance(body, collections.Iterable):
elif isinstance(body, Iterable):
for item in body:
try:
self._sock.send(item)
Expand Down
4 changes: 2 additions & 2 deletions hyper/http20/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def _connect_upgrade(self, sock):
with self._conn as conn:
conn.initiate_upgrade_connection()
conn.update_settings(
{h2.settings.ENABLE_PUSH: int(self._enable_push)}
{h2.settings.SettingCodes.ENABLE_PUSH: int(self._enable_push)}
)
self._send_outstanding_data()

Expand All @@ -424,7 +424,7 @@ def _send_preamble(self):
with self._conn as conn:
conn.initiate_connection()
conn.update_settings(
{h2.settings.ENABLE_PUSH: int(self._enable_push)}
{h2.settings.SettingCodes.ENABLE_PUSH: int(self._enable_push)}
)
self._send_outstanding_data()

Expand Down
4 changes: 2 additions & 2 deletions hyper/tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ def init_context(cert_path=None, cert=None, cert_password=None):

if cert is not None:
try:
basestring
except NameError:
from builtins import basestring
except ImportError:
basestring = (str, bytes)
if not isinstance(cert, basestring):
context.load_cert_chain(cert[0], cert[1], cert_password)
Expand Down
3 changes: 2 additions & 1 deletion test/test_hyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,8 @@ def test_incrementing_window_after_close(self):
# the default max frame size (16,384 bytes). That will, on the third
# frame, trigger the processing to increment the flow control window,
# which should then not happen.
f = SettingsFrame(0, settings={h2.settings.INITIAL_WINDOW_SIZE: 100})
f = SettingsFrame(0, settings={
h2.settings.SettingCodes.INITIAL_WINDOW_SIZE: 100})

c = HTTP20Connection('www.google.com')
c._sock = DummySocket()
Expand Down
2 changes: 1 addition & 1 deletion test_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest>=3.0
pytest-xdist
pytest-xdist<=1.27.0
pytest-cov
requests
mock
Expand Down