From: Jack Jansen Date: Wed, 26 Jun 2002 20:40:42 +0000 (+0000) Subject: Undefine TRUE and FALSE before redefining them. X-Git-Tag: v2.3c1~5198 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a96702b2bd231cad8b8989ce66715a65982fc5e;p=python Undefine TRUE and FALSE before redefining them. --- diff --git a/Modules/cPickle.c b/Modules/cPickle.c index 70ead4849a..248436532b 100644 --- a/Modules/cPickle.c +++ b/Modules/cPickle.c @@ -76,7 +76,9 @@ LONG Long (unbounded) integer; repr(i), then newline. #define TUPLE 't' #define EMPTY_TUPLE ')' #define SETITEMS 'u' +#undef TRUE #define TRUE "I01\n" +#undef FALSE #define FALSE "I00\n"