MCPcopy Create free account
hub / github.com/ipython/ipython / traceback

Method traceback

IPython/lib/backgroundjobs.py:346–354  ·  view source on GitHub ↗
(self, job=None)

Source from the content-addressed store, hash-verified

344 error('Job #%s not found' % num)
345
346 def traceback(self, job=None):
347 if job is None:
348 self._update_status()
349 for deadjob in self.dead:
350 print("Traceback for: %r" % deadjob)
351 self._traceback(deadjob)
352 print()
353 else:
354 self._traceback(job)
355
356
357class BackgroundJobBase(threading.Thread):

Callers

nothing calls this directly

Calls 2

_update_statusMethod · 0.95
_tracebackMethod · 0.95

Tested by

no test coverage detected