[issue17282] document the defaultTest parameter to unittest.main()

2014-01-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset 045e7a587f3c by R David Murray in branch '3.3': #17282: Document unittest.main defaultTest argument. http://hg.python.org/cpython/rev/045e7a587f3c New changeset 69b5f6924553 by R David Murray in branch '2.7': #17282: Document unittest.main

[issue17282] document the defaultTest parameter to unittest.main()

2014-01-02 Thread R. David Murray
R. David Murray added the comment: Thanks Kyle. I reworded it a bit to clarify the precedence of argv over defaultTest. (Also FYI your patch had stray spaces at the ends of the lines.) -- nosy: +r.david.murray resolution: - fixed stage: patch review - committed/rejected status: open

[issue17282] document the defaultTest parameter to unittest.main()

2013-05-09 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- stage: needs patch - patch review versions: -Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17282 ___

[issue17282] document the defaultTest parameter to unittest.main()

2013-05-01 Thread Kyle Roberts
Changes by Kyle Roberts roberts...@gmail.com: -- keywords: +patch Added file: http://bugs.python.org/file30096/default_test_3.4.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17282 ___

[issue17282] document the defaultTest parameter to unittest.main()

2013-05-01 Thread Kyle Roberts
Kyle Roberts added the comment: I've uploaded a patch documenting defaultTest in the latest branch and also in the previous branches. -- nosy: +kyle.roberts Added file: http://bugs.python.org/file30097/default_test_2.7-3.3.patch ___ Python tracker

[issue17282] document the defaultTest parameter to unittest.main()

2013-02-23 Thread Chris Jerdonek
New submission from Chris Jerdonek: This issue is to document the defaultTest parameter to unittest.main(): http://docs.python.org/dev/library/unittest.html#unittest.main Note that it is not enough simply to say that *defaultTest* is a default test name or iterable of test names. The