Skip to main content


The #Python standard library sure is something. :P #programming

(This is in the types module.)

try:
    raise TypeError
except TypeError as exc:
    TracebackType = type(exc.__traceback__)
    FrameType = type(exc.__traceback__.tb_frame)

Tech Cyborg reshared this.