(original) (raw)

changeset: 84458:27eb350d5056 branch: 3.3 parent: 84455:5bd3f9ed357e user: Ronald Oussoren ronaldoussoren@mac.com date: Sat Jul 06 13:20:57 2013 +0200 files: Mac/PythonLauncher/MyDocument.m Misc/NEWS description: Issue #12990: The "Python Launcher" on OSX could not launch python scripts that have paths that include wide characters. diff -r 5bd3f9ed357e -r 27eb350d5056 Mac/PythonLauncher/MyDocument.m --- a/Mac/PythonLauncher/MyDocument.m Sat Jul 06 12:25:52 2013 +0200 +++ b/Mac/PythonLauncher/MyDocument.m Sat Jul 06 13:20:57 2013 +0200 @@ -76,7 +76,7 @@ const char *cmdline; int sts; - cmdline = [[settings commandLineForScript: script] cString]; + cmdline = [[settings commandLineForScript: script] UTF8String]; if ([settings with_terminal]) { sts = doscript(cmdline); } else { diff -r 5bd3f9ed357e -r 27eb350d5056 Misc/NEWS --- a/Misc/NEWS Sat Jul 06 12:25:52 2013 +0200 +++ b/Misc/NEWS Sat Jul 06 13:20:57 2013 +0200 @@ -188,6 +188,9 @@ - Issue #15239: Make mkstringprep.py work again on Python 3. +- Issue #12990: The "Python Launcher" on OSX could not launch python scripts + that have paths that include wide characters. + Build ----- /ronaldoussoren@mac.com