Fine-grained: Nested class causes extra triggers to fire
Chưa có ai nhận issue này.
Đánh giá
- Độ khó
- 4/5
- Thời gian dự kiến
- 3-5 ngày
- Mức phù hợp với người mới
- 35/100
Hướng nghiên cứu
Start in mypy/test/testfinegrained.py with testNestedClassLeakingFromMethod and reproduce the shown debug output. Trace how nested class names containing line numbers produce triggers for both old and new names. Done means the test no longer reports unnecessary triggers while preserving the incompatible-assignment error.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Mô tả
This test case trigger too many triggers due to nested classes:
[case testNestedClassLeakingFromMethod]
import a
def f(o: a.A) -> None:
o.b.x = 1
[file a.py]
class A:
def f(self) -> None:
class B:
x: int
self.b = B()
def g(self) -> None:
class B: pass
self.c = B()
[file a.py.2]
class A:
# extra line
def f(self) -> None:
class B:
x: str
self.b = B()
def g(self) -> None:
class B: pass
self.c = B()
[out]
==
main:4: error: Incompatible types in assignment (expression has type "int", variable has type "str")
Here's the debug output:
mypy/test/testfinegrained.py ==== update 'a' ====
--- update single 'a' ---
triggered: ['<a.A.b>', '<a.A.c>', '<a.B@3>', '<a.B@4>', '<a.B@8>', '<a.B@9>']
process __main__.f
triggered: []
Note that since the line number is included in the class names, moving the class to another line changes the name and causes triggers for both the previous and new name to fire.
Not sure what's the best way to deal with this. If nested classes that leak from methods are rare enough this might not be a major problem.
- Ngôn ngữ chính
- Python
- Star
- 20.6k
- Fork
- 3.3k
- Merge trung bình
- 1 ngày 18 giờ
- Pull request đã merge (30 ngày)
- 54
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.
Issue khác của python/mypy
-
bug
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 75/100
-
bug
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100
-
bug
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 76/100
-
documentation
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 72/100
-
bug topic-configuration topic-error-reporting
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 68/100
Issue tương tự
-
Độ khó 1/5 Dưới một giờ Mức phù hợp với người mới 90/100
-
bug
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 86/100
zostera/django-bootstrap4#894 ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 78/100
use-agent-os/agent-os#3276 ·
-
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 88/100
zephyrproject-rtos/zephyr#119726 ·
-
area/auth bug comp/agent P3 platform/discord type/security
Độ khó 2/5 1-3 giờ Mức phù hợp với người mới 88/100
NousResearch/hermes-agent#117848 ·