MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / visit_AsyncWith

Method visit_AsyncWith

tools/python-3.11.9-amd64/Lib/ast.py:1105–1109  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

1103 self.traverse(node.body)
1104
1105 def visit_AsyncWith(self, node):
1106 self.fill("async with ")
1107 self.interleave(lambda: self.write(", "), self.traverse, node.items)
1108 with self.block(extra=self.get_type_comment(node)):
1109 self.traverse(node.body)
1110
1111 def _str_literal_helper(
1112 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