diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-11-28 17:18:26 (GMT) |
---|---|---|
committer | Christian Heimes <christian@python.org> | 2017-11-28 17:18:26 (GMT) |
commit | cb79c2203953bd465f2c53b7a09a51071717575f (patch) | |
tree | a795e0665c62b13a8d8b67860d35399087c6f007 /Modules | |
parent | 4237939805099eb6eb875e4531820fa965319589 (diff) | |
download | cpython-cb79c2203953bd465f2c53b7a09a51071717575f.zip cpython-cb79c2203953bd465f2c53b7a09a51071717575f.tar.gz cpython-cb79c2203953bd465f2c53b7a09a51071717575f.tar.bz2 |
bpo-31440: Changed default module search path for windows (#4613)
(cherry picked from commit 08d2b86a1058b733bb7f1ae2b55818dd9687d21c)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/main.c b/Modules/main.c index bcb992f..b0fb78f 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -20,9 +20,9 @@ #endif #if defined(MS_WINDOWS) -#define PYTHONHOMEHELP "<prefix>\\lib" +#define PYTHONHOMEHELP "<prefix>\\python{major}{minor}" #else -#define PYTHONHOMEHELP "<prefix>/pythonX.X" +#define PYTHONHOMEHELP "<prefix>/lib/pythonX.X" #endif #include "pygetopt.h" |