[issue18322] test_stat nits

2013-06-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: Committed with unittest.main(). Thanks for the comments. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker __

[issue18322] test_stat nits

2013-06-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset f3f38c84aebc by Antoine Pitrou in branch 'default': Issue #18322: fix some test_stat nits. http://hg.python.org/cpython/rev/f3f38c84aebc -- nosy: +python-dev ___ Python tracker

[issue18322] test_stat nits

2013-06-28 Thread STINNER Victor
STINNER Victor added the comment: > The mixin approach looks ugly and prohibits tab completion in my IDE. It is a common practice in Python, especially in tests. -- nosy: +haypo ___ Python tracker

[issue18322] test_stat nits

2013-06-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: While you are at it, should you just replace test_main with unittest.main? -- nosy: +terry.reedy ___ Python tracker ___

[issue18322] test_stat nits

2013-06-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue18322] test_stat nits

2013-06-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue18322] test_stat nits

2013-06-28 Thread Christian Heimes
Christian Heimes added the comment: Ask your Java buddies about mixins. :) Go ahead and submit the patch. -- ___ Python tracker ___ _

[issue18322] test_stat nits

2013-06-28 Thread Antoine Pitrou
Antoine Pitrou added the comment: > I wish the loader would ignore all test classes with a leading > underscore or would gain another way to mark a test class as > abstract. The mixin approach looks ugly and prohibits tab completion > in my IDE. I don't really understand what makes mixins "ugly"

[issue18322] test_stat nits

2013-06-28 Thread Christian Heimes
Christian Heimes added the comment: I wish the loader would ignore all test classes with a leading underscore or would gain another way to mark a test class as abstract. The mixin approach looks ugly and prohibits tab completion in my IDE. -- ___ Py

[issue18322] test_stat nits

2013-06-28 Thread Antoine Pitrou
New submission from Antoine Pitrou: Patch with small fixes and improvements to test_stat. -- assignee: christian.heimes components: Tests files: test_stat.patch keywords: patch messages: 191985 nosy: christian.heimes, pitrou priority: normal severity: normal stage: patch review status: o