Message345521
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 |
|
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 | |
|