From: Victor Stinner Date: Sat, 8 May 2010 11:12:21 +0000 (+0000) Subject: Blocked revisions 80948-80950,80971 via svnmerge X-Git-Tag: v3.1.3rc1~792 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=858b8f775e7cd68ab4bdc2cd72dc5f134a0152fa;p=python Blocked revisions 80948-80950,80971 via svnmerge ........ r80948 | victor.stinner | 2010-05-08 02:07:07 +0200 (sam., 08 mai 2010) | 2 lines err_input(): don't encode/decode the unicode message ........ r80949 | victor.stinner | 2010-05-08 02:35:33 +0200 (sam., 08 mai 2010) | 3 lines PyErr_SetFromErrnoWithFilename() decodes the filename using PyUnicode_DecodeFSDefault() instead of PyUnicode_FromString() ........ r80950 | victor.stinner | 2010-05-08 02:36:42 +0200 (sam., 08 mai 2010) | 5 lines posix_error_with_allocated_filename() decodes the filename with PyUnicode_DecodeFSDefaultAndSize() and call PyErr_SetFromErrnoWithFilenameObject() instead of PyErr_SetFromErrnoWithFilename() ........ r80971 | victor.stinner | 2010-05-08 13:10:09 +0200 (sam., 08 mai 2010) | 3 lines Issue #8514: Add os.fsencode() function (Unix only): encode a string to bytes for use in the file system, environment variables or the command line. ........ ---