Full Stack Traces in IronPython

Issue #194 new
Keith O'Hara created an issue

Had to add some extra code to get full stack trace in IronPython:

import System
try:
   new = features.Apply(grayimage) 
except System.Exception, e: 
   print(e)

Comments (3)

  1. Doug Blank

    Normally, the full CLR trace would not be useful (to the student). But your nice snippet shows developers had to get more info. We have a --debug-handler that disables the system exception handler... we could change its meaning to do what you suggest above.

  2. Log in to comment