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 xdegaye
Recipients Alex.Willmer, lemburg, loewis, vstinner, xdegaye
Date 2016-05-14.09:12:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463217131.21.0.698753899129.issue26920@psf.upfronthosting.co.za>
In-reply-to
Content
About the failures in test_c_locale_surrogateescape, it seems that on Android the locale is not set correctly on startup when LC_ALL is set to C:

root@generic_x86:/data/local/tmp # LC_ALL=C python
Python 3.6.0a0 (default:eee959fee5f5+, May 14 2016, 10:19:09) 
[GCC 4.9 20150123 (prerelease)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale; locale.getlocale()
('en_US', 'UTF-8')
>>> locale.setlocale(locale.LC_ALL, '')
'C'
>>> locale.getlocale()
(None, None)
>>>
History
Date User Action Args
2016-05-14 09:12:11xdegayesetrecipients: + xdegaye, lemburg, loewis, vstinner, Alex.Willmer
2016-05-14 09:12:11xdegayesetmessageid: <1463217131.21.0.698753899129.issue26920@psf.upfronthosting.co.za>
2016-05-14 09:12:11xdegayelinkissue26920 messages
2016-05-14 09:12:10xdegayecreate