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

Method visit_AsyncWith

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

Source from the content-addressed store, hash-verified

524 self.traverse(node.body)
525
526 def visit_AsyncWith(self, node):
527 self.fill("async with ", allow_semicolon=False)
528 self.interleave(lambda: self.write(", "), self.traverse, node.items)
529 with self.block(extra=self.get_type_comment(node)):
530 self.traverse(node.body)
531
532 def _str_literal_helper(
533 self, string, *, quote_types=_ALL_QUOTES, escape_special_whitespace=False

Callers

nothing calls this directly

Calls 6

fillMethod · 0.95
interleaveMethod · 0.95
writeMethod · 0.95
blockMethod · 0.95
get_type_commentMethod · 0.95
traverseMethod · 0.95

Tested by

no test coverage detected