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

Method visit_Delete

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

Source from the content-addressed store, hash-verified

292 self.fill("continue")
293
294 def visit_Delete(self, node):
295 self.fill("del ")
296 self.interleave(lambda: self.write(", "), self.traverse, node.targets)
297
298 def visit_Assert(self, node):
299 self.fill("assert ")

Callers

nothing calls this directly

Calls 3

fillMethod · 0.95
interleaveMethod · 0.95
writeMethod · 0.95

Tested by

no test coverage detected