mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
[3.14] gh-58124: Avoid CP_UTF8 in UnicodeDecodeError (GH-137415) (#137460)
gh-58124: Avoid CP_UTF8 in UnicodeDecodeError (GH-137415)
Fix name of the Python encoding in Unicode errors of the code page
codec: use "cp65000" and "cp65001" instead of "CP_UTF7" and "CP_UTF8"
which are not valid Python code names.
(cherry picked from commit ce1b747ff6)
Co-authored-by: Victor Stinner <vstinner@python.org>
This commit is contained in:
parent
e4e8c5a3b0
commit
57c8e3eb8e
4 changed files with 5 additions and 6 deletions
|
|
@ -7713,10 +7713,6 @@ code_page_name(UINT code_page, PyObject **obj)
|
|||
*obj = NULL;
|
||||
if (code_page == CP_ACP)
|
||||
return "mbcs";
|
||||
if (code_page == CP_UTF7)
|
||||
return "CP_UTF7";
|
||||
if (code_page == CP_UTF8)
|
||||
return "CP_UTF8";
|
||||
|
||||
*obj = PyBytes_FromFormat("cp%u", code_page);
|
||||
if (*obj == NULL)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue