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 asvetlov, ezio.melotti, gklein, jcea, jkloth, python-dev, serhiy.storchaka, skrah, tim.golden, turncc, vstinner
Date 2012-11-03.13:43:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351950223.15.0.34670241224.issue16218@psf.upfronthosting.co.za>
In-reply-to
Content
Andrew, you shod a flea.

1. Now the test skipped on non Cyrillic-compatible locales (such as en_US.ISO-8859-1).
2. On UTF-8 locale the test does not test the bug (it passed even without the patch).

Here is a new patch. It should fail on FreeBSD with ASCII locale (because there is a yet not fixed bug), and I don't know how it will behave on Windows. Temporary you can explicitly skip the test for such case:

    @unittest.skipIf(sys.platform.startswith('freebsd') and
                     sys.getfilesystemencoding() == 'ascii',
                     'skip on FreeBSD with ASCII filesystem encoding')
History
Date User Action Args
2012-11-03 13:43:43serhiy.storchakasetrecipients: + serhiy.storchaka, jcea, vstinner, tim.golden, jkloth, ezio.melotti, asvetlov, skrah, gklein, python-dev, turncc
2012-11-03 13:43:43serhiy.storchakasetmessageid: <1351950223.15.0.34670241224.issue16218@psf.upfronthosting.co.za>
2012-11-03 13:43:43serhiy.storchakalinkissue16218 messages
2012-11-03 13:43:42serhiy.storchakacreate