Skip to content

Commit

Permalink
[PR #7365/44f322d4 backport][3.9] Turn RawResponseMessage into a Name…
Browse files Browse the repository at this point in the history
…dTuple (#7369)

**This is a backport of PR #7365 as merged into master
(44f322d).**

## What do these changes do?

This makes pyright happier when accessing the fields on the class 

## Are there changes in behavior for the user?

No complaints from pyright with regards to it thinking the fields are
unknown.

## Checklist

- [x] I think the code is well written
- [ ] Unit tests for the changes exist
- [ ] Documentation reflects the changes
- [ ] If you provide code modification, please add yourself to
`CONTRIBUTORS.txt`
  * The format is <Name> <Surname>.
  * Please keep alphabetical order, the file is sorted by names.
- [ ] Add a new news fragment into the `CHANGES` folder
  * name it `<issue_id>.<type>` for example (588.bugfix)
* if you don't have an `issue_id` change it to the pr id after creating
the pr
  * ensure type is one of the following:
    * `.feature`: Signifying a new feature.
    * `.bugfix`: Signifying a bug fix.
    * `.doc`: Signifying a documentation improvement.
    * `.removal`: Signifying a deprecation or removal of public API.
* `.misc`: A ticket has been closed, but it is not of interest to users.
* Make sure to use full sentences with correct case and punctuation, for
example: "Fix issue with non-ascii contents in doctest text files."

Co-authored-by: James Hilton-Balfe <gobot1234yt@gmail.com>
  • Loading branch information
patchback[bot] and Gobot1234 committed Jul 17, 2023
1 parent 7e491cc commit 578d423
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
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

0 comments on commit 578d423

Please sign in to comment.