From: Guido van Rossum Date: Tue, 12 Jun 2001 16:29:12 +0000 (+0000) Subject: Incorporating MAL's bugfix into the 2.1.1 branch: X-Git-Tag: v2.1.1c1~80 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=23f8a04ab225a588393a636c5d4e76ffccba618c;p=thirdparty%2FPython%2Fcpython.git Incorporating MAL's bugfix into the 2.1.1 branch: revision 1.53 date: 2001/06/12 16:13:51; author: lemburg; state: Exp; lines: +1 -1 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"