User bio
404 bio not found
Member since Feb 6, 2023
Posts:
Philip has not published any posts yet.
Replies:

Just to clarify,

Do $System.Python.Debugging(1)

Will end up causing the C piece of SW that translates IRIS to python to call this:

void PyErr_PrintEx(int set_sys_last_vars)
 
If set_sys_last_vars is nonzero, the variable sys.last_exc is set to the printed exception.

In practice what this means, is somewhere close to your exception this gets called:

       if (PyErr_Occurred())
          PyErr_Print();

Which means you will actually be able to do a useful pdb post mortem
pdb.pm() or USER>d pdb.pm()

After your exception.

Certifications & Credly badges:
Philip has no Certifications & Credly badges yet.
Global Masters badges:
Philip has no Global Masters badges yet.
Followers:
Philip has no followers yet.
Following:
Philip has not followed anybody yet.