MCPcopy Index your code
hub / github.com/RustPython/RustPython / visit_DictComp

Method visit_DictComp

Lib/_ast_unparse.py:739–745  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

737 self.traverse(gen)
738
739 def visit_DictComp(self, node):
740 with self.delimit("{", "}"):
741 self.traverse(node.key)
742 self.write(": ")
743 self.traverse(node.value)
744 for gen in node.generators:
745 self.traverse(gen)
746
747 def visit_comprehension(self, node):
748 if node.is_async:

Callers

nothing calls this directly

Calls 3

delimitMethod · 0.95
traverseMethod · 0.95
writeMethod · 0.95

Tested by

no test coverage detected