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

Method throw

Lib/types.py:266–267  ·  view source on GitHub ↗
(self, tp, *rest)

Source from the content-addressed store, hash-verified

264 def send(self, val):
265 return self.__wrapped.send(val)
266 def throw(self, tp, *rest):
267 return self.__wrapped.throw(tp, *rest)
268 def close(self):
269 return self.__wrapped.close()
270 @property

Callers 1

__exit__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected