[New-bugs-announce] [issue4993] Typo in importlib

Antoine Pitrou report at bugs.python.org
Mon Jan 19 01:34:42 CET 2009


New submission from Antoine Pitrou <pitrou at free.fr>:

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: brett.cannon, pitrou
severity: normal
status: open
title: Typo in importlib
type: behavior
versions: Python 3.1

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4993>
_______________________________________


More information about the New-bugs-announce mailing list