[Python-checkins] cpython (3.5): Issue #26070: py.exe launcher fails to find in-place built binaries from

mark.hammond python-checkins at python.org
Sun Jan 10 22:54:10 EST 2016


https://hg.python.org/cpython/rev/51cc7adac78d
changeset:   99829:51cc7adac78d
branch:      3.5
parent:      99827:cc9ffb4829e7
user:        Mark Hammond <mhammond at skippinet.com.au>
date:        Mon Jan 11 14:50:22 2016 +1100
summary:
  Issue #26070: py.exe launcher fails to find in-place built binaries from earlier Python versions.

files:
  PC/launcher.c |  3 +++
  1 files changed, 3 insertions(+), 0 deletions(-)


diff --git a/PC/launcher.c b/PC/launcher.c
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -171,6 +171,9 @@
     L"\\",
     L"\\PCBuild\\win32\\",
     L"\\PCBuild\\amd64\\",
+    // To support early 32bit versions of Python that stuck the build binaries
+    // directly in PCBuild...
+    L"\\PCBuild\\",
     NULL
 };
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list