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

Commit 2761374

Browse files
committed
Expose top-level abstraction API
1 parent 62405b7 commit 2761374

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

hyper/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"""
99
__version__ = '0.3.1'
1010

11+
from .common.connection import HTTPConnection
1112
from .http20.connection import HTTP20Connection
1213
from .http20.response import HTTP20Response, HTTP20Push
1314
from .http11.connection import HTTP11Connection
@@ -19,6 +20,7 @@
1920
raise ImportError("hyper only supports Python 2.7 and Python 3.3 or higher.")
2021

2122
__all__ = [
23+
HTTPConnection,
2224
HTTP20Response,
2325
HTTP20Push,
2426
HTTP20Connection,

0 commit comments

Comments
 (0)