[issue16852] Fix test discovery for test_genericpath.py

2013-01-09 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the patch! -- assignee: -> ezio.melotti resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker _

[issue16852] Fix test discovery for test_genericpath.py

2013-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6f71e6aa9041 by Ezio Melotti in branch '3.3': #16852: test_genericpath, test_posixpath, test_ntpath, and test_macpath now work with unittest test discovery. Patch by Zachary Ware. http://hg.python.org/cpython/rev/6f71e6aa9041 New changeset 3a7cd8e

[issue16852] Fix test discovery for test_genericpath.py

2013-01-09 Thread Zachary Ware
Zachary Ware added the comment: Version 4 replaces test_main() with unittest.main() -- Added file: http://bugs.python.org/file28650/issue16852.v4.diff ___ Python tracker ___

[issue16852] Fix test discovery for test_genericpath.py

2013-01-04 Thread Zachary Ware
Zachary Ware added the comment: My apologies, I seem to have managed to rename the wrong file... Here's the real v2 as v3, with the TestGenericTest comment pointing to this issue instead of 16748. -- Added file: http://bugs.python.org/file28567/issue16852.v3.diff _

[issue16852] Fix test discovery for test_genericpath.py

2013-01-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It looks as v1. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue16852] Fix test discovery for test_genericpath.py

2013-01-03 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue16852] Fix test discovery for test_genericpath.py

2013-01-03 Thread Zachary Ware
Changes by Zachary Ware : -- keywords: +patch Added file: http://bugs.python.org/file28543/issue16852.v2.diff ___ Python tracker ___ _

[issue16852] Fix test discovery for test_genericpath.py

2013-01-03 Thread Zachary Ware
New submission from Zachary Ware: See Issue 16748 for previous discussion. This patch should fix test_genericpath.py, with changes to test_macpath.py, test_ntpath.py, and test_posixpath.py required by the fix to test_genericpath.py. This is version 2 of the patch after a review by Serhiy Sto