Skip to content

Commit fa10b7f

Browse files
committed
expose hdrs as public interface
1 parent 14796a7 commit fa10b7f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aiohttp/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
__version__ = '0.14.0a0'
44

55

6+
from . import hdrs # noqa
67
from .protocol import * # noqa
78
from .connector import * # noqa
89
from .client import * # noqa
@@ -21,4 +22,4 @@
2122
connector.__all__ +
2223
streams.__all__ +
2324
multidict.__all__ +
24-
['__version__'])
25+
['hdrs', '__version__'])

0 commit comments

Comments
 (0)