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

Method visit_Starred

mypy/fastparse.py:1731–1733  ·  view source on GitHub ↗
(self, n: Starred)

Source from the content-addressed store, hash-verified

1729
1730 # Starred(expr value, expr_context ctx)
1731 def visit_Starred(self, n: Starred) -> StarExpr:
1732 e = StarExpr(self.visit(n.value))
1733 return self.set_line(e, n)
1734
1735 # Name(identifier id, expr_context ctx)
1736 def visit_Name(self, n: Name) -> NameExpr:

Callers

nothing calls this directly

Calls 3

visitMethod · 0.95
set_lineMethod · 0.95
StarExprClass · 0.90

Tested by

no test coverage detected