Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 32d1e56

Browse files
committed
Issue #26070: py.exe launcher fails to find in-place built binaries from earlier Python versions.
1 parent 7e23fe1 commit 32d1e56

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

PC/launcher.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,9 @@ static wchar_t * location_checks[] = {
171171
L"\\",
172172
L"\\PCBuild\\win32\\",
173173
L"\\PCBuild\\amd64\\",
174+
// To support early 32bit versions of Python that stuck the build binaries
175+
// directly in PCBuild...
176+
L"\\PCBuild\\",
174177
NULL
175178
};
176179

0 commit comments

Comments
 (0)