MCPcopy
hub / github.com/rocky/python-uncompyle6 / n_raise_stmt2

Method n_raise_stmt2

uncompyle6/semantics/fragments.py:299–306  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

297 self.prune()
298
299 def n_raise_stmt2(self, node):
300 assert node[2] == "RAISE_VARARGS_2"
301 start = len(self.f.getvalue()) + len(self.indent)
302 try:
303 self.default(node)
304 except GenericASTTraversalPruningException:
305 self.set_pos_info(node[2], start, len(self.f.getvalue()))
306 self.prune()
307
308 # FIXME: Isolate: only in Python 2.x.
309 def n_raise_stmt3(self, node):

Callers

nothing calls this directly

Calls 2

set_pos_infoMethod · 0.95
defaultMethod · 0.45

Tested by

no test coverage detected