MCPcopy Index your code
hub / github.com/python/mypy / visit_assign_multi

Method visit_assign_multi

mypyc/analysis/dataflow.py:492–493  ·  view source on GitHub ↗
(self, op: AssignMulti)

Source from the content-addressed store, hash-verified

490 return non_trivial_sources(op), {op.dest}
491
492 def visit_assign_multi(self, op: AssignMulti) -> GenAndKill[Value]:
493 return non_trivial_sources(op), {op.dest}
494
495 def visit_set_mem(self, op: SetMem) -> GenAndKill[Value]:
496 return non_trivial_sources(op), set()

Callers

nothing calls this directly

Calls 1

non_trivial_sourcesFunction · 0.85

Tested by

no test coverage detected