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

Method _unpack_exc

Lib/test/test_interpreters/utils.py:265–271  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

263 return self._buf_err.decode('utf-8')
264
265 def _unpack_exc(self):
266 if self._exc is not None:
267 return self._exc
268 if not self._buf_exc:
269 return None
270 self._exc = unpack_exception(self._buf_exc)
271 return self._exc
272
273 def stdout(self):
274 if self.closed:

Callers 2

excMethod · 0.95
finalMethod · 0.95

Calls 1

unpack_exceptionFunction · 0.85

Tested by

no test coverage detected