Re: [IronPython] -i option doesn't go interactive when exception is raised

2006-03-13 Thread Dino Viehland
:[EMAIL PROTECTED] On Behalf Of Sanghyeon Seo Sent: Sunday, March 12, 2006 6:24 AM To: Discussion of IronPython Subject: [IronPython] -i option doesn't go interactive when exception is raised One use of -i option is to inspect stack trace when exception is raised. # test.py 1/0 $ python -i test.py

[IronPython] -i option doesn't go interactive when exception is raised

2006-03-12 Thread Sanghyeon Seo
One use of -i option is to inspect stack trace when exception is raised. # test.py 1/0 $ python -i test.py ... ZeroDivisionError This way one can inspect variables at the time exception was raised. Sure, debuggers can do that, but simple -i option is sometimes handy. IronPython implements -i