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 vstinner
Recipients vstinner
Date 2008-12-28.17:05:08
SpamBayes Score 1.6921113e-05
Marked as misclassified No
Message-id <1230483910.01.0.94876871379.issue4762@psf.upfronthosting.co.za>
In-reply-to
Content
In my last patch to fix the issue #4705, I replaced PyFile_FromFd() by 
custom code which set correctly the file name.

PyFile_FromFd() is also used in:
 - _Py_DisplaySourceLine(): name is not used, only 
PyFile_GetLine(file)
 - call_find_module() (imp.find_module()): return the file object with 
the wrong name

Example with imp:

>>> file, filename, extra = imp.find_module("os")
>>> file
<io.TextIOWrapper object at 0xb7b6ea6c>
>>> file.name
4
>>> filename
'/home/SHARE/SVN/py3k/Lib/os.py'
History
Date User Action Args
2008-12-28 17:05:10vstinnersetrecipients: + vstinner
2008-12-28 17:05:10vstinnersetmessageid: <1230483910.01.0.94876871379.issue4762@psf.upfronthosting.co.za>
2008-12-28 17:05:09vstinnerlinkissue4762 messages
2008-12-28 17:05:08vstinnercreate