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

Method visit_Try

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

Source from the content-addressed store, hash-verified

978 self.traverse(node.finalbody)
979
980 def visit_Try(self, node):
981 prev_in_try_star = self._in_try_star
982 try:
983 self._in_try_star = False
984 self.do_visit_try(node)
985 finally:
986 self._in_try_star = prev_in_try_star
987
988 def visit_TryStar(self, node):
989 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