From 2b1cc895729710e3e1751f4b1867299821e04c03 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Mon, 19 Dec 2011 18:19:06 +0100 Subject: [PATCH] _Py_fopen now allows bytes filenames under non-Windows platforms. --- Python/fileutils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/fileutils.c b/Python/fileutils.c index 8c049e02af5..1e71431c009 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);