[issue25805] Failure in test_pkgutil run from command-line

2016-08-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 863258dcb745 by Brett Cannon in branch 'default': Issue #25805: Skip a test for test_pkgutil when __name__ == __main__. https://hg.python.org/cpython/rev/863258dcb745 -- nosy: +python-dev ___ Python

[issue25805] Failure in test_pkgutil run from command-line

2016-08-12 Thread Brett Cannon
Changes by Brett Cannon : -- stage: patch review -> resolved ___ Python tracker ___ ___

[issue25805] Failure in test_pkgutil run from command-line

2016-08-12 Thread Brett Cannon
Brett Cannon added the comment: Since most people just run tests using `-m test` I only applied the fix to 3.6. Thanks for the patch, SilentGhost! -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue25805] Failure in test_pkgutil run from command-line

2016-08-12 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> brett.cannon nosy: +brett.cannon ___ Python tracker ___

[issue25805] Failure in test_pkgutil run from command-line

2016-08-12 Thread SilentGhost
SilentGhost added the comment: Could anyone could have a look at this fairly trivial patch? -- ___ Python tracker ___

[issue25805] Failure in test_pkgutil run from command-line

2016-03-29 Thread SilentGhost
Changes by SilentGhost : -- nosy: +r.david.murray versions: +Python 3.5 ___ Python tracker ___

[issue25805] Failure in test_pkgutil run from command-line

2016-03-23 Thread SilentGhost
SilentGhost added the comment: Upon further investigation it seems this particular test needs to be just skipped when running as __main__. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file42255/issue25805.diff ___