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

Commit 4b9e2d7

Browse files
committed
Allow HTTP/1.1 to take arbitrary keyword arguments.
1 parent a2d4637 commit 4b9e2d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hyper/http11/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class HTTP11Connection(object):
4444
``False`` for most requests, but to ``True`` for any request issued to
4545
port 443.
4646
"""
47-
def __init__(self, host, port=None, secure=None):
47+
def __init__(self, host, port=None, secure=None, **kwargs):
4848
if port is None:
4949
try:
5050
self.host, self.port = host.split(':')

0 commit comments

Comments
 (0)