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 vstinner
Recipients asvetlov, ezio.melotti, gklein, jcea, jkloth, python-dev, serhiy.storchaka, skrah, tim.golden, turncc, vstinner
Date 2012-11-04.23:18:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352071103.23.0.665471841997.issue16218@psf.upfronthosting.co.za>
In-reply-to
Content
> @unittest.skipIf(sys.platform.startswith('freebsd') and
>                  sys.getfilesystemencoding() == 'ascii',
>                  'skip on FreeBSD with ASCII filesystem encoding')

Such skip is not a good idea. Many OS uses the Latin1 encoding when the C locale is used (even if ASCII encoding is announced :-/): Solaris, FreeBSD, Mac OS X, etc.

pythonrun_filename_decoding_test_2.patch: 'surrogateescape' error handler is not used on Windows (and must not be used), whereas the initial issue was reported on Windows.
History
Date User Action Args
2012-11-04 23:18:23vstinnersetrecipients: + vstinner, jcea, tim.golden, jkloth, ezio.melotti, asvetlov, skrah, gklein, python-dev, serhiy.storchaka, turncc
2012-11-04 23:18:23vstinnersetmessageid: <1352071103.23.0.665471841997.issue16218@psf.upfronthosting.co.za>
2012-11-04 23:18:23vstinnerlinkissue16218 messages
2012-11-04 23:18:22vstinnercreate