Return true if the object is a traceback. Traceback objects provide these attributes: tb_frame frame object at this level tb_lasti index of last attempted instruction in bytecode tb_lineno current line number in Python source code tb_next
(object)
| 371 | isinstance(object, collections.abc.Awaitable)) |
| 372 | |
| 373 | def istraceback(object): |
| 374 | """Return true if the object is a traceback. |
| 375 | |
| 376 | Traceback objects provide these attributes: |
| 377 | tb_frame frame object at this level |
| 378 | tb_lasti index of last attempted instruction in bytecode |
| 379 | tb_lineno current line number in Python source code |
| 380 | tb_next next inner traceback object (called by this level)""" |
| 381 | return isinstance(object, types.TracebackType) |
| 382 | |
| 383 | def isframe(object): |
| 384 | """Return true if the object is a frame object. |
no outgoing calls
no test coverage detected
searching dependent graphs…