From: Marc-André Lemburg Date: Tue, 12 Jun 2001 16:13:51 +0000 (+0000) Subject: Removed the Python version from the PYTHONHOMEHELP string. It was X-Git-Tag: v2.2a3~1570 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da4dbc36c102d5005737365f65627bbca1d2395b;p=thirdparty%2FPython%2Fcpython.git Removed the Python version from the PYTHONHOMEHELP string. It was still set to python2.0 ... --- diff --git a/Modules/main.c b/Modules/main.c index 018364725e5a..64abaf3eb27e 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -14,7 +14,7 @@ #if defined(PYOS_OS2) || defined(MS_WINDOWS) #define PYTHONHOMEHELP "\\lib" #else -#define PYTHONHOMEHELP "/python2.0" +#define PYTHONHOMEHELP "/pythonX.X" #endif #include "pygetopt.h"