This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hoffman
Recipients
Date 2006-09-06.13:04:34
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=987664

Here's some test code that might indicate how this is useful:

def x(n=0):
.....try:
..........y(n+1)
.....except:
..........ei = sys.exc_info()
..........print_full_exception(ei[0], ei[1], ei[2], sys.stderr)

def y(n):
.....if n > 10:
..........raise IOError, "test"
.....
.....x(n+1)

x()
History
Date User Action Args
2008-01-20 09:59:50adminlinkissue1553375 messages
2008-01-20 09:59:50admincreate