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

Commit 9a6b46c

Browse files
committed
Update hyperframe to v1.1.1
1 parent d73aca7 commit 9a6b46c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hyper/packages/hyperframe/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
66
A module for providing a pure-Python HTTP/2 framing layer.
77
"""
8-
__version__ = '1.1.0'
8+
__version__ = '1.1.1'

hyper/packages/hyperframe/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import struct
1212

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

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

0 commit comments

Comments
 (0)