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 inyeol
Recipients
Date 2002-08-23.10:16:18
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Python 2.2.1 (#1, Apr 10 2002, 18:25:16) 
[GCC 2.95.3 20010315 (release)] on sunos5
>>> try: execfile('non_existent_file')
... except IOError, msg: msg.__dict__

{'errno': 2, 'args': (2, 'No such file or directory'),
'strerror': 'No such file or directory', 'filename':
None}

There should be a filename, not None.

-Inyeol Lee 
History
Date User Action Args
2007-08-23 14:05:12adminlinkissue599163 messages
2007-08-23 14:05:12admincreate