mirror of https://github.com/python/cpython.git
(3.3->default) Issue #12990: The "Python Launcher" on OSX could not launch python scripts that have paths that include wide characters.
This commit is contained in:
commit
361b28dbd4
|
@ -76,7 +76,7 @@
|
||||||
const char *cmdline;
|
const char *cmdline;
|
||||||
int sts;
|
int sts;
|
||||||
|
|
||||||
cmdline = [[settings commandLineForScript: script] cString];
|
cmdline = [[settings commandLineForScript: script] UTF8String];
|
||||||
if ([settings with_terminal]) {
|
if ([settings with_terminal]) {
|
||||||
sts = doscript(cmdline);
|
sts = doscript(cmdline);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -599,6 +599,12 @@ Build
|
||||||
- Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1
|
- Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1
|
||||||
on Windows.
|
on Windows.
|
||||||
|
|
||||||
|
Tools/Demos
|
||||||
|
-----------
|
||||||
|
|
||||||
|
- Issue #12990: The "Python Launcher" on OSX could not launch python scripts
|
||||||
|
that have paths that include wide characters.
|
||||||
|
|
||||||
What's New in Python 3.3.1 release candidate 1?
|
What's New in Python 3.3.1 release candidate 1?
|
||||||
===============================================
|
===============================================
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue