Fine-grained: Nested class causes extra triggers to fire
Nobody has claimed this yet.
Assessment
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Newbie friendliness
- 35/100
Research direction
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.
Written by the indexing model from the issue text.
Description
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.
- Dominant language
- Python
- Stars
- 20.6k
- Forks
- 3.3k
- Avg merge
- 1d 18h
- Merged PRs (30d)
- 54
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from python/mypy
-
bug
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
-
bug
Difficulty 2/5 1-3 hours Newbie friendliness 78/100
-
bug
Difficulty 2/5 1-3 hours Newbie friendliness 76/100
-
documentation
Difficulty 2/5 1-3 hours Newbie friendliness 72/100
-
bug topic-configuration topic-error-reporting
Difficulty 2/5 1-3 hours Newbie friendliness 68/100
Similar issues
-
area/auth bug comp/agent P3 platform/discord type/security
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
NousResearch/hermes-agent#117848 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
bancolombia/sentinel#23 ·
-
test md OpenCI
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
-
integration:quickjs org:external priority:backlog topic:code-interpreter topic:middleware type:feature
Difficulty 2/5 1-3 hours Newbie friendliness 74/100
langchain-ai/deepagents#6450 ·
-
bug client
Difficulty 2/5 1-3 hours Newbie friendliness 88/100