From 51ee65645a0e6a9280712a49e0eff318f732dfa3 Mon Sep 17 00:00:00 2001 From: Ronald Oussoren Date: Sat, 6 Jul 2013 13:19:58 +0200 Subject: [PATCH] Issue #12990: The "Python Launcher" on OSX could not launch python scripts that have paths that include wide characters. --- Mac/PythonLauncher/MyDocument.m | 2 +- Misc/NEWS | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Mac/PythonLauncher/MyDocument.m b/Mac/PythonLauncher/MyDocument.m index 86112c4b15d4..8f851e74e301 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 { diff --git a/Misc/NEWS b/Misc/NEWS index 8114b696af8c..c3689e931887 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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 ----- -- 2.47.3