From: Antoine Pitrou Date: Mon, 19 Dec 2011 17:19:06 +0000 (+0100) Subject: _Py_fopen now allows bytes filenames under non-Windows platforms. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b1cc895729710e3e1751f4b1867299821e04c03;p=python _Py_fopen now allows bytes filenames under non-Windows platforms. --- diff --git a/Python/fileutils.c b/Python/fileutils.c index 8c049e02af..1e71431c00 100644 --- a/Python/fileutils.c +++ b/Python/fileutils.c @@ -321,8 +321,8 @@ _Py_fopen(PyObject *path, const char *mode) return _wfopen(wpath, wmode); #else FILE *f; - PyObject *bytes = PyUnicode_EncodeFSDefault(path); - if (bytes == NULL) + PyObject *bytes; + if (!PyUnicode_FSConverter(path, &bytes)) return NULL; f = fopen(PyBytes_AS_STRING(bytes), mode); Py_DECREF(bytes);