Issue 4993: Typo in importlib (original) (raw)

Issue4993

Created on 2009-01-19 00:34 by pitrou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg80139 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2009-01-19 00:34
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:
msg80147 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2009-01-19 06:56
Yeah, that code has not been tested yet as that is farther down the todo list. Thanks for the catch! Fixed in r68761.
History
Date User Action Args
2022-04-11 14:56:44 admin set github: 49243
2009-01-19 06:56:48 brett.cannon set status: open -> closedresolution: fixedmessages: + stage: resolved
2009-01-19 00:34:42 pitrou create