From: Guido van Rossum Date: Fri, 17 Feb 1995 15:11:57 +0000 (+0000) Subject: remove bogus ## in front of gcc __VERSION__ X-Git-Tag: v1.2b4~224 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e575ff7d8edc6ad0a12c38c242d4297eac12ddc;p=thirdparty%2FPython%2Fcpython.git remove bogus ## in front of gcc __VERSION__ --- diff --git a/Modules/config.c.in b/Modules/config.c.in index 9e0f34a54dd1..0e4db0c00279 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -136,7 +136,7 @@ getargcargv(argc,argv) #endif #ifdef __GNUC__ -#define COMPILER " [GCC " ##__VERSION__ "]" +#define COMPILER " [GCC " __VERSION__ "]" #endif #ifndef COMPILER