Message323165
> So, where is the filename coming from?
Python 3.7.0 (default, Jul 23 2018, 10:07:21)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from sage.all import Integer
>>> try:
... Integer(1)/Integer(0)
... except Exception as e:
... E = e
>>> E.__traceback__.tb_next.tb_frame.f_code.co_filename
'sage/structure/element.pyx'
So this is the correct filename, relative to site-packages. |
|
| Date |
User |
Action |
Args |
| 2018-08-05 17:27:18 | jdemeyer | set | recipients:
+ jdemeyer, brett.cannon, paul.moore, ncoghlan, scoder, petr.viktorin, erik.bray, eric.snow, sth |
| 2018-08-05 17:27:18 | jdemeyer | set | messageid: <1533490038.64.0.56676864532.issue32797@psf.upfronthosting.co.za> |
| 2018-08-05 17:27:18 | jdemeyer | link | issue32797 messages |
| 2018-08-05 17:27:18 | jdemeyer | create | |
|