This repository was archived by the owner on Jan 13, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ X.X.X (XXXX-XX-XX)
66
77*Major Changes *
88
9- - Support for HPACK draft 8 .
9+ - Support for HPACK draft 9 .
1010- Support for HTTP/2 draft 13.
1111- Support for Python 2.7, thanks to the inimitable @alekstorm! (`Issue #33 `_)
1212- Support for PyPy.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ What version of the HTTP/2 draft specification does ``hyper`` support?
1616----------------------------------------------------------------------
1717
1818Currently, ``hyper `` supports version 13 of the HTTP/2 draft specification,
19- and version 8 of the HPACK draft specification. ``hyper `` will be updated to
19+ and version 9 of the HPACK draft specification. ``hyper `` will be updated to
2020keep up with the HTTP/2 draft specifications as they progress.
2121
2222Does ``hyper `` support HTTP/2 flow control?
Original file line number Diff line number Diff line change 55
66Implements the HPACK header compression algorithm as detailed by the IETF.
77
8- Implements the version dated January 9 , 2014.
8+ Implements the version dated July 31 , 2014.
99"""
1010import collections
1111import logging
2020log = logging .getLogger (__name__ )
2121
2222# The implementation draft of HPACK we support.
23- DRAFT = 8
23+ DRAFT = 9
2424
2525
2626def encode_integer (integer , prefix_bits ):
You can’t perform that action at this time.
0 commit comments