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 pitrou
Recipients brett.cannon, pitrou
Date 2009-01-19.00:34:40
SpamBayes Score 0.004454327
Marked as misclassified No
Message-id <1232325282.91.0.864148022751.issue4993@psf.upfronthosting.co.za>
In-reply-to
Content
In importlib/_bootstrap.py, line 435 reads:

        with closing(_fileio_FileIO(source_path, 'r')) as file:

which whould probably be:

        with closing(_fileio._FileIO(source_path, 'r')) as file:
History
Date User Action Args
2009-01-19 00:34:43pitrousetrecipients: + pitrou, brett.cannon
2009-01-19 00:34:42pitrousetmessageid: <1232325282.91.0.864148022751.issue4993@psf.upfronthosting.co.za>
2009-01-19 00:34:42pitroulinkissue4993 messages
2009-01-19 00:34:41pitroucreate