[issue25686] Don't use distutils in test_shutil

2015-11-21 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Welcome Serhiy, -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue25686] Don't use distutils in test_shutil

2015-11-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Stéphane for your review. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 2.7 ___ Python tracker _

[issue25686] Don't use distutils in test_shutil

2015-11-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset c50cbb5d5ece by Serhiy Storchaka in branch '3.4': Issue #25686: test_shutil no longer uses the distutils package for searching https://hg.python.org/cpython/rev/c50cbb5d5ece New changeset df11d58fce00 by Serhiy Storchaka in branch '3.5': Issue #2568

[issue25686] Don't use distutils in test_shutil

2015-11-20 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Works fine on my laptop with 3.6. and the code is right -- nosy: +matrixise ___ Python tracker ___

[issue25686] Don't use distutils in test_shutil

2015-11-20 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: The distutils package is used in test_shutil to search and run external archivers. But using distutils can have side effects (see issue25607). Proposed patch replaces distutils with standard functions for searching executables and running command, shutil.w