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

Method visit_SetComp

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

Source from the content-addressed store, hash-verified

731 self.traverse(gen)
732
733 def visit_SetComp(self, node):
734 with self.delimit("{", "}"):
735 self.traverse(node.elt)
736 for gen in node.generators:
737 self.traverse(gen)
738
739 def visit_DictComp(self, node):
740 with self.delimit("{", "}"):

Callers

nothing calls this directly

Calls 2

delimitMethod · 0.95
traverseMethod · 0.95

Tested by

no test coverage detected