Browse Source

Issue #26070: py.exe launcher fails to find in-place built binaries from earlier Python versions.

pull/9921/head
Mark Hammond 10 years ago
parent
commit
ce543fd795
  1. 3
      PC/launcher.c

3
PC/launcher.c

@ -171,6 +171,9 @@ static wchar_t * location_checks[] = {
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
};

Loading…
Cancel
Save