[issue8221] 2to3 mishandles StringIO inside a package with an io.py module

2010-03-24 Thread Robert Kern
New submission from Robert Kern : When a module inside a package imports StringIO from cStringIO, it should change that to "from io import StringIO". However, if there is a module inside the package named io.py, 2to3 changes it to "from .io import StringIO". [bug23]$ tree . `-- package |--

[issue8221] 2to3 mishandles StringIO inside a package with an io.py module

2010-03-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: This should be fixed in the latest versions of 2to3. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker __