Message61258
| 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:50 | admin | link | issue1553375 messages |
| 2008年01月20日 09:59:50 | admin | create |
|