Message153337
| Author |
ubershmekel |
| Recipients |
ubershmekel |
| Date |
2012年02月14日.11:38:57 |
| SpamBayes Score |
2.34086e-08 |
| Marked as misclassified |
No |
| Message-id |
<1329219539.12.0.054946832037.issue14008@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
I ran the following code:
import time
time.sleep(10)
print 1 / 0
And then modified the source before it hit the exception, python prints out the wrong lines from the new source file.
e:\Dropbox\dev\python\metricbot>c:\python32\python test.py
Traceback (most recent call last):
File "test.py", line 3, in <module>
alkdf;alsdkf;l
ZeroDivisionError: division by zero
What should have been printed out:
e:\Dropbox\dev\python\metricbot>test.py
Traceback (most recent call last):
File "E:\Dropbox\dev\python\metricbot\test.py", line 3, in <module>
print 1 / 0
ZeroDivisionError: integer division or modulo by zero
Although this is a toy example, I did run in to the problem when working on a long running script that I was upgrading.
Tested it and got the same results on python 2.7 and 3.2. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2012年02月14日 11:38:59 | ubershmekel | set | recipients:
+ ubershmekel |
| 2012年02月14日 11:38:59 | ubershmekel | set | messageid: <1329219539.12.0.054946832037.issue14008@psf.upfronthosting.co.za> |
| 2012年02月14日 11:38:58 | ubershmekel | link | issue14008 messages |
| 2012年02月14日 11:38:58 | ubershmekel | create |
|