| 127 | # Hack to embed stringification of remote traceback in local traceback |
| 128 | |
| 129 | class _RemoteTraceback(Exception): |
| 130 | def __init__(self, tb): |
| 131 | self.tb = tb |
| 132 | def __str__(self): |
| 133 | return self.tb |
| 134 | |
| 135 | class _ExceptionWithTraceback: |
| 136 | def __init__(self, exc, tb): |
no outgoing calls
no test coverage detected
searching dependent graphs…