`urllib.request.Request.data` type erroring when using `decode`
Chưa có ai nhận issue này.
- Ngôn ngữ chính
- Python
- Star
- 5.1k
- Fork
- 2.1k
- Merge trung bình
- 1 ngày 19 giờ
- Pull request đã merge (30 ngày)
- 82
Mô tả
When getting the data out of a urllib.request.Request object, mypy is erroring saying that decode is not supported even tho it is a bytes object (and does not error when at runtime).
$ cat t.py
from urllib.request import Request
req = Request("http://localhost:8080", data=b"req body")
if req.data:
print(dir(req.data))
print(type(req.data))
print(req.data.decode())
$ mypy t.py
t.py:8: error: Item "Buffer" of "Buffer | SupportsRead[bytes] | Iterable[bytes]" has no attribute "decode" [union-attr]
t.py:8: error: Item "SupportsRead[bytes]" of "Buffer | SupportsRead[bytes] | Iterable[bytes]" has no attribute "decode" [union-attr]
t.py:8: error: Item "Iterable[bytes]" of "Buffer | SupportsRead[bytes] | Iterable[bytes]" has no attribute "decode" [union-attr]
Found 3 errors in 1 file (checked 1 source file)
$ python t.py
[... 'decode', ...]
<class 'bytes'>
req body
$ python --version --version
Python 3.12.0 (main, Oct 2 2023, 20:56:14) [Clang 16.0.3 ]
$ mypy --version
mypy 1.8.0 (compiled: yes)
I believe PR #10225 had made this an error as it changed bytes to Buffer.
- ReadOnlyBuffer: TypeAlias = bytes
- ReadableBuffer: TypeAlias = ReadOnlyBuffer | WriteableBuffer # stable
+ ReadOnlyBuffer: TypeAlias = Buffer # stable
+ ReadableBuffer: TypeAlias = Buffer # stable
Before: https://github.com/python/typeshed/blame/56aeeb677f27c6771e683314621521aff5c97cd1/stdlib/_typeshed/__init__.pyi#L230-L241
After: https://github.com/python/typeshed/blame/1e7e174b4fc4da6a66622168f8012c7ee0499392/stdlib/_typeshed/__init__.pyi#L263-L267
Deferred until #11422.
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Hướng nghiên cứu
Bắt đầu với chú thích dữ liệu của urllib.request.Request và các bí danh Buffer trong stdlib/_typeshed/init.pyi, bằng cách so sánh các thay đổi trước và sau được liên kết trong issue. Tái hiện ví dụ mypy được cung cấp và xem lại PR #10225 cùng issue bị trì hoãn #11422 để có thêm ngữ cảnh. Được xem là hoàn tất khi ví dụ chấp nhận decode mà không làm mất các kiểu dữ liệu được chấp nhận theo dự kiến.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- python
- Lĩnh vực
- tooling
- Loại issue
- Lỗi
- Độ khó
- 3/5
- Thời gian dự kiến
- 1-2 ngày
- Mức độ hoạt động
- Đình trệ
- Độ rõ ràng
- Khá rõ ràng
- Mức phù hợp với người mới
- 35/100