mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Issue #8226: sys.setfilesystemencoding() raises a LookupError if the encoding
is unknown.
This commit is contained in:
@@ -29,7 +29,7 @@ int Py_HasFileSystemDefaultEncoding = 0;
|
||||
int
|
||||
_Py_SetFileSystemEncoding(PyObject *s)
|
||||
{
|
||||
PyObject *defenc;
|
||||
PyObject *defenc, *codec;
|
||||
if (!PyUnicode_Check(s)) {
|
||||
PyErr_BadInternalCall();
|
||||
return -1;
|
||||
@@ -37,6 +37,10 @@ _Py_SetFileSystemEncoding(PyObject *s)
|
||||
defenc = _PyUnicode_AsDefaultEncodedString(s, NULL);
|
||||
if (!defenc)
|
||||
return -1;
|
||||
codec = _PyCodec_Lookup(PyBytes_AsString(defenc));
|
||||
if (codec == NULL)
|
||||
return -1;
|
||||
Py_DECREF(codec);
|
||||
if (!Py_HasFileSystemDefaultEncoding && Py_FileSystemDefaultEncoding)
|
||||
/* A file system encoding was set at run-time */
|
||||
free((char*)Py_FileSystemDefaultEncoding);
|
||||
|
||||
Reference in New Issue
Block a user