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

Commit

Permalink
Update hyperframe to v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasa committed Jul 20, 2015
1 parent d73aca7 commit 9a6b46c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hyper/packages/hyperframe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
A module for providing a pure-Python HTTP/2 framing layer.
"""
__version__ = '1.1.0'
__version__ = '1.1.1'
2 changes: 1 addition & 1 deletion hyper/packages/hyperframe/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import struct

# The maximum initial length of a frame. Some frames have shorter maximum lengths.
FRAME_MAX_LEN = (2 ** 14) - 1
FRAME_MAX_LEN = (2 ** 14)

# The maximum allowed length of a frame.
FRAME_MAX_ALLOWED_LEN = (2 ** 24) - 1
Expand Down

0 comments on commit 9a6b46c

Please sign in to comment.