Skip to content

Commit

Permalink
Issue python#12990: The "Python Launcher" on OSX could not launch pyt…
Browse files Browse the repository at this point in the history
…hon scripts that have paths that include wide characters.
  • Loading branch information
ronaldoussoren committed Jul 6, 2013
1 parent d9e7c86 commit fd1c69e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Mac/PythonLauncher/MyDocument.m
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ - (BOOL)run
const char *cmdline;
int sts;

cmdline = [[settings commandLineForScript: script] cString];
cmdline = [[settings commandLineForScript: script] UTF8String];
if ([settings with_terminal]) {
sts = doscript(cmdline);
} else {
Expand Down
3 changes: 3 additions & 0 deletions Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ Tools/Demos

- 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
-----

Expand Down

0 comments on commit fd1c69e

Please sign in to comment.