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

Method visit_TryStar

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

Source from the content-addressed store, hash-verified

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
990 try:
991 self._in_try_star = True
992 self.do_visit_try(node)
993 finally:
994 self._in_try_star = prev_in_try_star
995
996 def visit_ExceptHandler(self, node):
997 self.fill("except*" if self._in_try_star else "except")

Callers

nothing calls this directly

Calls 1

do_visit_tryMethod · 0.95

Tested by

no test coverage detected