Message345521
| Author |
vstinner |
| Recipients |
ncoghlan, r.david.murray, vstinner, yselivanov |
| Date |
2019年06月13日.14:30:45 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1560436246.0.0.117652152917.issue20443@roundup.psfhosted.org> |
| In-reply-to |
| Content |
One of the side effect of my PR 14053 is that tracebacks are more verbose: the filename is now absolute rather than relative.
Currently:
$ python3 x.py
Traceback (most recent call last):
File "x.py", line 4, in <module>
func()
File "x.py", line 2, in func
bug
NameError: name 'bug' is not defined
With my PR:
$ ./python x.py
Traceback (most recent call last):
File "/home/vstinner/prog/python/master/x.py", line 4, in <module>
func()
File "/home/vstinner/prog/python/master/x.py", line 2, in func
bug
NameError: name 'bug' is not defined |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2019年06月13日 14:30:46 | vstinner | set | recipients:
+ vstinner, ncoghlan, r.david.murray, yselivanov |
| 2019年06月13日 14:30:46 | vstinner | set | messageid: <1560436246.0.0.117652152917.issue20443@roundup.psfhosted.org> |
| 2019年06月13日 14:30:45 | vstinner | link | issue20443 messages |
| 2019年06月13日 14:30:45 | vstinner | create |
|