Commit 51ee6564 authored by Ronald Oussoren's avatar Ronald Oussoren

Issue #12990: The "Python Launcher" on OSX could not launch python scripts...

Issue #12990: The "Python Launcher" on OSX could not launch python scripts that have paths that include wide characters.
parent 20d46692
......@@ -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 {
......
......@@ -67,6 +67,12 @@ Library
- Issue #18113: Fixed a refcount leak in the curses.panel module's
set_userptr() method. Reported by Atsuo Ishimoto.
Tools/Demos
-----------
- Issue #12990: The "Python Launcher" on OSX could not launch python scripts
that have paths that include wide characters.
Build
-----
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment