This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zach.ware
Recipients eric.araujo, zach.ware
Date 2012-12-22.01:02:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1356138147.12.0.530314626781.issue16748@psf.upfronthosting.co.za>
In-reply-to
Content
As pointed out by Éric Araujo in msg177908 of issue16694, tests using the idiom presented in PEP 399 are subject to breakage of test discovery.  This issue's goal is to root out and fix all usages of this idiom.

So far, only test_heapq is known to be affected.

As for fixing the issue, each module get its own mixin class, or should a simple class such as:

class TestPyAndCMixin:
    module = None

be added to test.support?
History
Date User Action Args
2012-12-22 01:02:27zach.waresetrecipients: + zach.ware, eric.araujo
2012-12-22 01:02:27zach.waresetmessageid: <1356138147.12.0.530314626781.issue16748@psf.upfronthosting.co.za>
2012-12-22 01:02:27zach.warelinkissue16748 messages
2012-12-22 01:02:26zach.warecreate