This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author exarkun
Recipients exarkun, gvanrossum, ndim, theller
Date 2008-11-01.19:25:22
SpamBayes Score 1.1752372e-06
Marked as misclassified No
Message-id <1225567523.79.0.379662693275.issue1309567@psf.upfronthosting.co.za>
In-reply-to
Content
This is still relevant.  It makes linecache (and therefore some other
things, like inspect.getsource) almost useless in many cases.  For
example, because of this, sometimes inspect.getsource will raise an
IOError and sometimes it will return garbage data.  If the source file
isn't around, it'd be much better to fail all the time.  Rummaging
around in the filesystem hoping to get lucky and find another file with
the same name which contains the correct contents is insane.  This may
have made sense when relative path names were being used, but it makes
no sense anymore.
History
Date User Action Args
2008-11-01 19:25:24exarkunsetrecipients: + exarkun, gvanrossum, theller, ndim
2008-11-01 19:25:23exarkunsetmessageid: <1225567523.79.0.379662693275.issue1309567@psf.upfronthosting.co.za>
2008-11-01 19:25:23exarkunlinkissue1309567 messages
2008-11-01 19:25:22exarkuncreate