(original) (raw)

changeset: 99829:51cc7adac78d branch: 3.5 parent: 99827:cc9ffb4829e7 user: Mark Hammond mhammond@skippinet.com.au date: Mon Jan 11 14:50:22 2016 +1100 files: PC/launcher.c description: Issue #26070: py.exe launcher fails to find in-place built binaries from earlier Python versions. diff -r cc9ffb4829e7 -r 51cc7adac78d PC/launcher.c --- a/PC/launcher.c Sat Jan 09 23:56:31 2016 -0800 +++ b/PC/launcher.c Mon Jan 11 14:50:22 2016 +1100 @@ -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 }; /mhammond@skippinet.com.au