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

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit cb79c22

miss-islingtontiran

authored and

committed

File tree

1 file changed

lines changed

1 file changed

lines changed

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