Unexpected incompatible types in assignment (Failed in recursive type checking, nested protocol with generic type)
Chưa có ai nhận issue này.
- Ngôn ngữ chính
- Python
- Star
- 20.6k
- Fork
- 3.3k
- Chỉ số merge pull request
- Chỉ số pull request đang chờ
Mô tả
Bug Report
Here I write some nested protocol with generic type.
The basic protocol classes with generic type succeed to match the classes written in the pyi file, like this:
t: Tempo[int] = core.TempoTick(0, 0) # pass
t: Temop = core.TemoTick(0,0) # pass
However, for upper layer class, list List[Tempo], it just started to fail (with generic), like this:
Note that List is a self defined protocol here for classes generated by pybind11 bind_vector
tempos2: List[Tempo] = core.TempoTickList() # not pass
tempos3: List = core.TempoTickList() # pass
The full errors are listed here:
Incompatible types in assignment (expression has type "TempoTickList", variable has type "symusic.types.List[Tempo[Any]]")Mypy[assignment](https://mypy.readthedocs.io/en/latest/_refs.html#code-assignment)
Following member(s) of "TempoTickList" have conflicts:
Expected:
@overload
def __setitem__(self, int, Tempo[Any], /) -> None
@overload
def __setitem__(self, slice, TempoTickList, /) -> None
Got:
@overload
def __setitem__(self, int, TempoTick, /) -> None
@overload
def __setitem__(self, slice, TempoTickList, /) -> None
Expected:
def append(self, x: Tempo[Any]) -> None
Got:
def append(self, x: TempoTick) -> None
<1 more conflict(s) not shown>Mypy
Although Tempo and Tempo[int] have matched TempoTick, they are said failed to match in the errors.
Even if I remove some of the nested generic type like below, it still failed:
class Score(Protocol[TimeDtype]):
ticks_per_quarter: int
tracks: List
key_signatures: List
time_signatures: List
tempos: List
lyrics: List
markers: List
By the way, in pycharm, it says, all of these classes fail to match, quite different from mypy. And different from mypy, pycharm don't offer me any useful debug information. (But pycharm works as expected in my following test while mypy failed. So I guess there are at least 2 problems in total.)
To Reproduce
I put my codes here (just a few files):
symusic.zip
And the code in picture is at the bottom of the types.py. I just use the vscode MyPy Type Checker plugin.
Expected Behavior
Well, I just expect it to match.
Actual Behavior
They don't match when the protocol with generic type is nested
Your Environment
- Mypy version used: mypy 1.7.1 (compiled: yes)
- Mypy command-line flags: default in vscode
- Mypy configuration options from
mypy.ini(and other config files): default - Python version used: 3.11.6
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 bản tái hiện symusic.zip được đính kèm, đặc biệt là phần mã ở cuối types.py, và chạy nó bằng mypy 1.7.1 với cấu hình mặc định. So sánh các phép gán protocol generic lồng nhau với các lỗi được báo cáo; hoàn thành khi TempoTickList và các phép gán protocol liên quan được chấp nhận nhất quán với các trường hợp đơn giản hơ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
- devtools
- Loại issue
- Lỗi
- Độ khó
- 4/5
- Thời gian dự kiến
- 3-5 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