[issue3260] fix_imports does not handle intra-package renames

2008-12-31 Thread Benjamin Peterson
Benjamin Peterson added the comment: I think I will close this as "won't fix". As you say, the only applicable rename is test.test_support. That only is not enough IMO to add all the complexity to fix_imports that handling packages properly would require. -- nosy: +benjamin.peterson res

[issue3260] fix_imports does not handle intra-package renames

2008-10-03 Thread Collin Winter
Changes by Collin Winter <[EMAIL PROTECTED]>: -- assignee: collinwinter -> ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-l

[issue3260] fix_imports does not handle intra-package renames

2008-07-02 Thread Brett Cannon
New submission from Brett Cannon <[EMAIL PROTECTED]>: ``from test import test_support`` should lead to ``from test import support as test_support``. Also does not work for ``from test.test_support import Error``. There is also no good way to handle ``import test.test_support`` since ``import tes