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 serhiy.storchaka
Recipients pablogsal, serhiy.storchaka, vstinner
Date 2019-08-27.06:50:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1566888623.37.0.703761381921.issue37957@roundup.psfhosted.org>
In-reply-to
Content
Tests that fail on some platforms can be marked to skip in code.

For example:

    @unittest.skipIf(sys.platform.startswith('aix'),
                     'bpo-29972: broken test on AIX')
    def test_strcoll_with_diacritic(self):
        self.assertLess(locale.strcoll('à', 'b'), 0)
History
Date User Action Args
2019-08-27 06:50:23serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, pablogsal
2019-08-27 06:50:23serhiy.storchakasetmessageid: <1566888623.37.0.703761381921.issue37957@roundup.psfhosted.org>
2019-08-27 06:50:23serhiy.storchakalinkissue37957 messages
2019-08-27 06:50:23serhiy.storchakacreate