Skip to content

Commit

Permalink
bpo-31440: Changed default module search path for windows (python#4613)
Browse files Browse the repository at this point in the history
(cherry picked from commit 08d2b86)
  • Loading branch information
miss-islington authored and tiran committed Nov 28, 2017
1 parent 4237939 commit cb79c22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit cb79c22

Please sign in to comment.