MCPcopy Index your code
hub / github.com/ipython/ipython / __call__

Method __call__

IPython/core/ultratb.py:135–143  ·  view source on GitHub ↗
(
        self,
        etype: type[BaseException],
        evalue: BaseException | None,
        etb: TracebackType | None,
    )

Source from the content-addressed store, hash-verified

133 list), instances of this class can't call the interactive pdb debugger."""
134
135 def __call__(
136 self,
137 etype: type[BaseException],
138 evalue: BaseException | None,
139 etb: TracebackType | None,
140 ) -> None:
141 self.ostream.flush()
142 self.ostream.write(self.text(etype, evalue, etb))
143 self.ostream.write("\n")
144
145 def _extract_tb(self, tb: TracebackType | None) -> traceback.StackSummary | None:
146 if tb:

Callers 1

__call__Method · 0.45

Calls 3

flushMethod · 0.45
writeMethod · 0.45
textMethod · 0.45

Tested by

no test coverage detected