MCPcopy Index your code
hub / github.com/python/cpython / visit_NamedItem

Method visit_NamedItem

Tools/peg_generator/pegen/c_generator.py:713–717  ·  view source on GitHub ↗
(self, node: NamedItem)

Source from the content-addressed store, hash-verified

711 self.print("}")
712
713 def visit_NamedItem(self, node: NamedItem) -> None:
714 call = self.callmakervisitor.generate_call(node)
715 if call.assigned_variable:
716 call.assigned_variable = self.dedupe(call.assigned_variable)
717 self.print(call)
718
719 def visit_Rhs(
720 self, node: Rhs, is_loop: bool, is_gather: bool, rulename: str | None

Callers

nothing calls this directly

Calls 3

generate_callMethod · 0.80
dedupeMethod · 0.80
printMethod · 0.45

Tested by

no test coverage detected