diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2013-07-06 13:25:44 +0200 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2013-07-06 13:25:44 +0200 |
commit | 361b28dbd4cbfd80bc95d1926432fabfddc0892c (patch) | |
tree | 164fc81792497baec73397bd851d6e140427af76 /Mac | |
parent | 8624ed502ff5ff1ccaf5fba58e945611e6758d97 (diff) | |
parent | fd1c69e2a497f685374caa1133c47fa51e8030e5 (diff) | |
download | cpython-git-361b28dbd4cbfd80bc95d1926432fabfddc0892c.tar.gz |
(3.3->default) Issue #12990: The "Python Launcher" on OSX could not launch python scripts that have paths that include wide characters.
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/PythonLauncher/MyDocument.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/PythonLauncher/MyDocument.m b/Mac/PythonLauncher/MyDocument.m index 86112c4b15..8f851e74e3 100755 --- a/Mac/PythonLauncher/MyDocument.m +++ b/Mac/PythonLauncher/MyDocument.m @@ -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 { |