[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-12-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset c838c9b117f1 by Victor Stinner in branch '3.2': Issue #16416: On Mac OS X, operating system data are now always http://hg.python.org/cpython/rev/c838c9b117f1 New changeset 26c4748351cb by Victor Stinner in branch '3.3': (Merge 3.2) Issue #16416: On

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-12-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset af6fd3ca6de9 by Victor Stinner in branch '3.2': Issue #16416: Fix compilation error http://hg.python.org/cpython/rev/af6fd3ca6de9 -- ___ Python tracker rep...@bugs.python.org

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-12-03 Thread STINNER Victor
STINNER Victor added the comment: The issue should now be fixed in Python 3.2, 3.3 and 3.4. -- resolution: - fixed status: open - closed versions: +Python 3.2, Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16416

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-12-02 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ping. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16416 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: Victor, could you please backport to 3.3? -- assignee: ronaldoussoren - haypo nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16416 ___

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-12 Thread STINNER Victor
STINNER Victor added the comment: macosx-2.patch patches _Py_wchar2char() and _Py_char2wchar() functions to use UTF-8/surrogateescape for any function using the locale encoding, not only file related functions of fileutils.h. The patch does also simplify the code, no more specific #ifdef

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 48fbdaf3a849 by Victor Stinner in branch 'default': Issue #16416: OS data are now always encoded/decoded to/from http://hg.python.org/cpython/rev/48fbdaf3a849 -- nosy: +python-dev ___ Python tracker

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset f3e512b5ffb3 by Victor Stinner in branch 'default': Issue #16416: Fix error handling in _Py_wchar2char() _Py_char2wchar() functions http://hg.python.org/cpython/rev/f3e512b5ffb3 -- ___ Python tracker

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1b97cc71a05e by Victor Stinner in branch 'default': Issue #16416: Fix Misc/NEWS entry, mention Mac OS X http://hg.python.org/cpython/rev/1b97cc71a05e -- ___ Python tracker rep...@bugs.python.org

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-12 Thread STINNER Victor
STINNER Victor added the comment: @Serhiy: Thanks for your review, I missed it before my first commit. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16416 ___

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-12 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Victor, are you going to backport this to 3.3? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16416 ___ ___

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-12 Thread STINNER Victor
STINNER Victor added the comment: Victor, are you going to backport this to 3.3? I'm waiting for the result of the buildbots, and maybe also the fix for the issue #16455 (which has an impact on tests on undecodable bytes). -- ___ Python tracker

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-07 Thread Andrew Svetlov
Changes by Andrew Svetlov andrew.svet...@gmail.com: -- nosy: +asvetlov ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16416 ___ ___

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-05 Thread STINNER Victor
New submission from STINNER Victor: Since the changeset 45079ad1e260 (issue #4388), command line arguments are decoded from UTF-8 instead of the locale encoding. Functions of Python/fileutils.c are still using the locale encoding. It does not work: see issue #16218. On Mac OS X, in the

[issue16416] Mac OS X: don't use the locale encoding but UTF-8 to encode and decode filenames

2012-11-05 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16416 ___ ___