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
<
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