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

Method visit_Try

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

Source from the content-addressed store, hash-verified

362 self.traverse(node.finalbody)
363
364 def visit_Try(self, node):
365 prev_in_try_star = self._in_try_star
366 try:
367 self._in_try_star = False
368 self.do_visit_try(node)
369 finally:
370 self._in_try_star = prev_in_try_star
371
372 def visit_TryStar(self, node):
373 prev_in_try_star = self._in_try_star

Callers

nothing calls this directly

Calls 1

do_visit_tryMethod · 0.95

Tested by

no test coverage detected