[issue4993] Typo in importlib

2009-01-18 Thread Brett Cannon
Brett Cannon added the comment: Yeah, that code has not been tested yet as that is farther down the todo list. Thanks for the catch! Fixed in r68761. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <

[issue4993] Typo in importlib

2009-01-18 Thread Antoine Pitrou
New submission from Antoine Pitrou : 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: -- assignee: brett.cannon messages: 80139 nosy: b