[3.9] Fix typos in the Python directory (GH-28767) (GH-28798)

(cherry picked from commit db693df3e1)

Automerge-Triggered-By: GH:JulienPalard
This commit is contained in:
Christian Clauss 2021-10-07 16:36:39 +02:00 committed by GitHub
parent 960e7b3ba1
commit 78efc9aff2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -223,7 +223,7 @@ check_force_ascii(void)
ch = (unsigned char)0xA7;
res = _Py_mbstowcs(&wch, (char*)&ch, 1);
if (res != DECODE_ERROR && wch == L'\xA7') {
/* On HP-UX withe C locale or the POSIX locale,
/* On HP-UX with C locale or the POSIX locale,
nl_langinfo(CODESET) announces "roman8", whereas mbstowcs() uses
Latin1 encoding in practice. Force ASCII in this case.