[issue16910] Fix test discovery for bytes/string tests

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

[issue16910] Fix test discovery for bytes/string tests

2013-01-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 55383912c225 by Ezio Melotti in branch '3.3': #16910: test_bytes, test_unicode, and test_userstring now work with unittest test discovery. Patch by Zachary Ware. http://hg.python.org/cpython/rev/55383912c225 New changeset 6478c4259ce3 by Ezio Melo

[issue16910] Fix test discovery for bytes/string tests

2013-01-09 Thread Zachary Ware
Changes by Zachary Ware : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue16910] Fix test discovery for bytes/string tests

2013-01-09 Thread Zachary Ware
New submission from Zachary Ware: This patch fixes discovery for test_bytes.py. That fix changes string_tests.py, which breaks test_unicode.py and test_userstring.py, so those two files have been changed as well. All three test files also use unittest.main() now instead of test_main().