commit | 43c57785d3319249c03c3fa46c9df42a8ccd3e52 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Sun May 10 08:15:24 2009 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Sun May 10 08:15:24 2009 +0000 |
tree | 199d57826897ac525b4057253a82aaaefcb6ef82 | |
parent | e0a2b72e61a474dceb948be57cb2983f70ab07fb [diff] |
Rename utf8b error handler to surrogateescape.
diff --git a/Modules/_io/fileio.c b/Modules/_io/fileio.c index 164f7e4..555dc12 100644 --- a/Modules/_io/fileio.c +++ b/Modules/_io/fileio.c
@@ -245,7 +245,7 @@ return -1; stringobj = PyUnicode_AsEncodedString( - u, Py_FileSystemDefaultEncoding, "utf8b"); + u, Py_FileSystemDefaultEncoding, "surrogateescape"); Py_DECREF(u); if (stringobj == NULL) return -1;