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

Class _RemoteTraceback

Lib/concurrent/futures/process.py:129–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127# Hack to embed stringification of remote traceback in local traceback
128
129class _RemoteTraceback(Exception):
130 def __init__(self, tb):
131 self.tb = tb
132 def __str__(self):
133 return self.tb
134
135class _ExceptionWithTraceback:
136 def __init__(self, exc, tb):

Callers 3

_rebuild_excFunction · 0.85
_terminate_brokenMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…