[issue2414] Fix implicit relative imports

2008-03-19 Thread David Wolever
David Wolever <[EMAIL PROTECTED]> added the comment: Added in r61626. -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bug

[issue2414] Fix implicit relative imports

2008-03-18 Thread Martin v. Löwis
New submission from Martin v. Löwis <[EMAIL PROTECTED]>: There should be a fixer that changes from foo import bar into from .foo import bar if the import occurs in a package and foo is in the very same package. Likewise, it should change import foo to from . import foo -- assigne