[issue6583] 2to3 fails to fix test.test_support

2010-05-27 Thread Benjamin Peterson
Benjamin Peterson added the comment: r81579 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue6583] 2to3 fails to fix test.test_support

2010-05-27 Thread Rodrigo Bernardo Pimentel
Rodrigo Bernardo Pimentel added the comment: Pascal is correct, trunk Doc/library/test.rst still says: "The 2to3 tool will automatically adapt imports when converting your sources to 3.0." Perhaps this should simply be changed to "The 2to3 tool will not automatically convert this, so make sur

[issue6583] 2to3 fails to fix test.test_support

2010-05-17 Thread Pascal Chambon
Pascal Chambon added the comment: Sorry to reraise an old issue, but the documentation of "test" module is deceiving on that one : "The test.test_support module has been renamed to test.support in Python 3.0. The 2to3 tool will automatically adapt imports when converting your sources to 3.0."

[issue6583] 2to3 fails to fix test.test_support

2009-08-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: We decided a while ago that it wasn't worth adding the complication to fix_imports to handle this case, since test.test_support isn't technically public API. -- nosy: +benjamin.peterson resolution: -> wont fix status: open -> closed ___

[issue6583] 2to3 fails to fix test.test_support

2009-07-26 Thread Joe Amenta
New submission from Joe Amenta : PEP 3108 states that test.test_support was renamed to test.support as a part of the Standard Library Reorganization process. However... 2to3 does not refactor (or even warn about) test.test_support. Simply adding "test.test_support": "test.support", into the MA