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 eric.snow
Recipients Carson Lam, Eric Appelt, barry, brett.cannon, doko, eric.snow, ishcherb, lukasz.langa, mark.dickinson, ncoghlan, petr.viktorin, serhiy.storchaka
Date 2017-06-02.16:46:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496421970.81.0.0322462593579.issue29514@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry I didn't see the just-landed PR earlier, but it may make sense to not skip that test under *any* release level for a micro version > 0:

    @unittest.skipUnless(
        (sys.version_info.micro > 0 or
         sys.version_info.releaselevel in ('final', 'release')),
        'only applies to candidate or final python release levels'
    )
History
Date User Action Args
2017-06-02 16:46:10eric.snowsetrecipients: + eric.snow, barry, brett.cannon, doko, mark.dickinson, ncoghlan, petr.viktorin, lukasz.langa, serhiy.storchaka, Carson Lam, Eric Appelt, ishcherb
2017-06-02 16:46:10eric.snowsetmessageid: <1496421970.81.0.0322462593579.issue29514@psf.upfronthosting.co.za>
2017-06-02 16:46:10eric.snowlinkissue29514 messages
2017-06-02 16:46:10eric.snowcreate