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 Michael.Felt
Recipients Michael.Felt, michael-o, terry.reedy, vstinner
Date 2018-08-28.12:10:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <B9A96C79-C727-48E7-B725-AB66F40AF2D6@felt.demon.nl>
In-reply-to <1535455206.96.0.56676864532.issue34403@psf.upfronthosting.co.za>
Content
No time to compile for a couple of days. Stress from others wins instead. 

Maybe on Friday. 

Sent from my iPhone

> On 28 Aug 2018, at 13:20, STINNER Victor <report@bugs.python.org> wrote:
> 
> 
> STINNER Victor <vstinner@redhat.com> added the comment:
> 
>> -            check('utf8=0', [arg.decode(encoding, 'surrogateescape')],
>> +            check('utf8=0', [arg.decode('ascii', 'surrogateescape')],
>>                   LC_ALL='C')
>> (...)
>> == Tests result: SUCCESS ==
> 
> Good, it works.
> 
> I updated my PR 8969 to implement properly my idea. With this PR, on HP-UX with C or POSIX locale, Python now uses ASCII for its "filesystem encoding": sys.getfilesystemencoding() returns "ascii".
> 
> Michael: can you please try my updated PR 8969?
> 
> * apply the updated change
> * recompile Python
> * run the test suite using: LC_ALL=C ./python -m test -j0 -r
> 
> You may also test with the current locale: ./python -m test -j0 -r
> 
> If everything is good on your side, I will merge my PR.
> 
> ----------
> 
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue34403>
> _______________________________________
>
History
Date User Action Args
2018-08-28 12:10:53Michael.Feltsetrecipients: + Michael.Felt, terry.reedy, vstinner, michael-o
2018-08-28 12:10:53Michael.Feltlinkissue34403 messages
2018-08-28 12:10:53Michael.Feltcreate