Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PR #7365/44f322d4 backport][3.9] Turn RawResponseMessage into a NamedTuple #7369

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/7365.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added typing information to ``RawResponseMessage`` -- by :user:`Gobot1234`
25 changes: 10 additions & 15 deletions aiohttp/http_parser.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import abc
import asyncio
import collections
import re
import string
from contextlib import suppress
Expand Down Expand Up @@ -77,20 +76,16 @@ class RawRequestMessage(NamedTuple):
url: URL


RawResponseMessage = collections.namedtuple(
"RawResponseMessage",
[
"version",
"code",
"reason",
"headers",
"raw_headers",
"should_close",
"compression",
"upgrade",
"chunked",
],
)
class RawResponseMessage(NamedTuple):
version: HttpVersion
code: int
reason: str
headers: CIMultiDictProxy[str]
raw_headers: RawHeaders
should_close: bool
compression: Optional[str]
upgrade: bool
chunked: bool


_MsgT = TypeVar("_MsgT", RawRequestMessage, RawResponseMessage)
Expand Down
Loading