From: Barry Warsaw Date: Wed, 28 Nov 2001 21:34:34 +0000 (+0000) Subject: Reverting last change so we don't have to think about the assert macro X-Git-Tag: v2.2.1c1~664 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5947af5ac38b29baa7886c340fd804eee463bddc;p=python Reverting last change so we don't have to think about the assert macro redefinition problem. --- diff --git a/Parser/grammar1.c b/Parser/grammar1.c index 45af139dac..b2631b785d 100644 --- a/Parser/grammar1.c +++ b/Parser/grammar1.c @@ -1,4 +1,4 @@ -#include "Python.h" + /* Grammar subroutines needed by parser */ #include "pgenheaders.h" @@ -39,7 +39,7 @@ PyGrammar_LabelRepr(label *lb) return "EMPTY"; else if (ISNONTERMINAL(lb->lb_type)) { if (lb->lb_str == NULL) { - PyOS_snprintf(buf, sizeof(buf), "NT%d", lb->lb_type); + sprintf(buf, "NT%d", lb->lb_type); return buf; } else @@ -49,9 +49,8 @@ PyGrammar_LabelRepr(label *lb) if (lb->lb_str == NULL) return _PyParser_TokenNames[lb->lb_type]; else { - PyOS_snprintf(buf, sizeof(buf), "%.32s(%.32s)", - _PyParser_TokenNames[lb->lb_type], - lb->lb_str); + sprintf(buf, "%.32s(%.32s)", + _PyParser_TokenNames[lb->lb_type], lb->lb_str); return buf; } }