bpo-31440: Changed default module search path for windows · python/cpython@08d2b86 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 08d2b86

gauravbackbacktiran

authored and

committed

bpo-31440: Changed default module search path for windows

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -21,9 +21,9 @@
21 21 #endif
22 22
23 23 #if defined(MS_WINDOWS)
24 -#define PYTHONHOMEHELP "\\lib"
24 +#define PYTHONHOMEHELP "\\python{major}{minor}"
25 25 #else
26 -#define PYTHONHOMEHELP "/pythonX.X"
26 +#define PYTHONHOMEHELP "/lib/pythonX.X"
27 27 #endif
28 28
29 29 #include "pygetopt.h"