[issue17691] Fix test discovery for test_univnewlines.py

2013-06-08 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue17691] Fix test discovery for test_univnewlines.py

2013-06-08 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue17691] Fix test discovery for test_univnewlines.py

2013-06-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset a2e093e98d45 by Ezio Melotti in branch '3.3': #17691: test_univnewlines now works with unittest test discovery. Patch by Zachary Ware. http://hg.python.org/cpython/rev/a2e093e98d45 New changeset d1b5e41acf28 by Ezio Melotti in branch 'default': #1

[issue17691] Fix test discovery for test_univnewlines.py

2013-05-28 Thread Zachary Ware
Zachary Ware added the comment: Looking at this again, the test_main magic wasn't too arcane, so here's a patch that does away with test_main (or load_tests) completely. -- Added file: http://bugs.python.org/file30401/test_univnewlines_discovery.v2.diff

[issue17691] Fix test discovery for test_univnewlines.py

2013-04-10 Thread Zachary Ware
New submission from Zachary Ware: Inheritance issues again. This one has some magic in test_main to create the C and Python tests programmatically which I felt was best left alone, so the patch simply converts test_main into a load_tests which ignores its arguments. -- components: Tes