[issue4743] intra-pkg multiple import (import local1, local2) not fixed

2008-12-26 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: r67928 makes 2to3 more tolerant about multiple imports on a line. It also warns when there is an absolute import and relative import on the same line. -- nosy: +benjamin.peterson resolution: - fixed status: open - closed

[issue4743] intra-pkg multiple import (import local1, local2) not fixed

2008-12-24 Thread John Machin
New submission from John Machin sjmac...@users.sourceforge.net: In a package, import local1, local2 is not fixed. Here's some real live 2to3 output showing the problem and the workaround: import ExcelFormulaParser, ExcelFormulaLexer -import ExcelFormulaParser -import ExcelFormulaLexer +from