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)
like this
Tech Cyborg reshared this.
Noel Kelly
in reply to Neil E. Hodges • • •Neil E. Hodges likes this.