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

Method visit_Rhs

Tools/peg_generator/pegen/c_generator.py:719–725  ·  view source on GitHub ↗
(
        self, node: Rhs, is_loop: bool, is_gather: bool, rulename: str | None
    )

Source from the content-addressed store, hash-verified

717 self.print(call)
718
719 def visit_Rhs(
720 self, node: Rhs, is_loop: bool, is_gather: bool, rulename: str | None
721 ) -> None:
722 if is_loop:
723 assert len(node.alts) == 1
724 for alt in node.alts:
725 self.visit(alt, is_loop=is_loop, is_gather=is_gather, rulename=rulename)
726
727 def join_conditions(self, keyword: str, node: Any) -> None:
728 self.print(f"{keyword} (")

Callers

nothing calls this directly

Calls 1

visitMethod · 0.45

Tested by

no test coverage detected