[IronPython] Traceback support?
Gary Stephenson
garys at ihug.com.au
Fri Sep 1 22:16:47 PDT 2006
In the release notes for Beta 4 it mentions "Traceback support", but try as
I might I can't seem to get my hands on a Traceback object. Am I doing
something wrong?
thanks in advance,
gary
import sys
def test():
try:
raise Exception()
except Exception, oErr:
print sys.exc_info()[2] # None in ipy, traceback object in
CPython
print sys.exc_traceback # ditto..
test()
More information about the users
mailing list