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

Method __str__

Lib/concurrent/interpreters/__init__.py:51–60  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

49 self.excinfo = excinfo
50
51 def __str__(self):
52 try:
53 formatted = self.excinfo.errdisplay
54 except Exception:
55 return super().__str__()
56 else:
57 return _EXEC_FAILURE_STR.format(
58 superstr=super().__str__(),
59 formatted=formatted,
60 )
61
62
63def create():

Callers

nothing calls this directly

Calls 2

superClass · 0.85
formatMethod · 0.45

Tested by

no test coverage detected