[issue17789] Fix test discovery for test_random.py

2013-04-18 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 _

[issue17789] Fix test discovery for test_random.py

2013-04-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 678564fc0962 by Ezio Melotti in branch '3.3': #17789: test_random now works with unittest test discovery. Patch by Zachary Ware. http://hg.python.org/cpython/rev/678564fc0962 New changeset ac352d7d8058 by Ezio Melotti in branch 'default': #17789:

[issue17789] Fix test discovery for test_random.py

2013-04-18 Thread Zachary Ware
New submission from Zachary Ware: This one had subclassing issues, and SystemRandom_TestBasicOps was being skipped by exclusion from the list of tests passed to support.run_unittest, so it's been converted to a skip decorator. -- components: Tests files: test_random_discovery.diff keyw