Closes #27781: Removes special cases for the experimental aspect of PEP 529
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 50b21cf..249cf57 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -3843,18 +3843,9 @@
cannot only rely on it: check also interp->fscodec_initialized for
subinterpreters. */
if (Py_FileSystemDefaultEncoding && interp->fscodec_initialized) {
- PyObject *res = PyUnicode_Decode(s, size,
+ return PyUnicode_Decode(s, size,
Py_FileSystemDefaultEncoding,
Py_FileSystemDefaultEncodeErrors);
-#ifdef MS_WINDOWS
- if (!res && PyErr_ExceptionMatches(PyExc_UnicodeDecodeError)) {
- _PyErr_FormatFromCause(PyExc_RuntimeError,
- "filesystem path bytes were not correctly encoded with '%s'. "
- "Please report this at http://bugs.python.org/issue27781",
- Py_FileSystemDefaultEncoding);
- }
-#endif
- return res;
}
else {
return PyUnicode_DecodeLocaleAndSize(s, size, Py_FileSystemDefaultEncodeErrors);