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

Commit 10320db

Browse files
committed
Add new lines.
1 parent 273ec05 commit 10320db

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

hyper/http20/stream.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,20 @@ def __init__(self,
6060
# Set to a key-value set of the response headers once their
6161
# HEADERS..CONTINUATION frame sequence finishes.
6262
self.response_headers = None
63+
6364
# A dict mapping the promised stream ID of a pushed resource to a
6465
# key-value set of its request headers. Entries are added once their
6566
# PUSH_PROMISE..CONTINUATION frame sequence finishes.
6667
self.promised_headers = {}
68+
6769
# Chunks of encoded header data from the current
6870
# (HEADERS|PUSH_PROMISE)..CONTINUATION frame sequence. Since sending any
6971
# frame other than a CONTINUATION is disallowed while a header block is
7072
# being transmitted, this and ``promised_stream_id`` are the only pieces
7173
# of state we have to track.
7274
self.header_data = []
7375
self.promised_stream_id = None
76+
7477
# Unconsumed response data chunks. Empties after every call to _read().
7578
self.data = []
7679

0 commit comments

Comments
 (0)