MCPcopy Create free account
hub / github.com/python/mypy / AnalysisResult

Class AnalysisResult

mypyc/analysis/dataflow.py:168–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166
167
168class AnalysisResult(Generic[T]):
169 def __init__(self, before: AnalysisDict[T], after: AnalysisDict[T]) -> None:
170 self.before = before
171 self.after = after
172
173 def __str__(self) -> str:
174 return f"before: {self.before}\nafter: {self.after}\n"
175
176
177GenAndKill = tuple[AbstractSet[T], AbstractSet[T]]

Callers 1

run_analysisFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…