From: Guido van Rossum Date: Mon, 15 Dec 2003 06:06:24 +0000 (+0000) Subject: Remove a "temporary" piece of code that was probably unneeded since X-Git-Tag: v2.4a1~1093 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd311d8e4eba6c8f9a24a068861aed2da88f5d4a;p=thirdparty%2FPython%2Fcpython.git Remove a "temporary" piece of code that was probably unneeded since mid 1990. Remove an untrue XXX comment. --- diff --git a/Parser/pgen.c b/Parser/pgen.c index 453deb43f80b..e643d330b4d7 100644 --- a/Parser/pgen.c +++ b/Parser/pgen.c @@ -1,6 +1,4 @@ - /* Parser generator */ -/* XXX This file is not yet fully PROTOized */ /* For a description, see the comments at end of this file */ @@ -231,11 +229,6 @@ compile_alt(labellist *ll, nfa *nf, node *n, int *pa, int *pb) --i; n++; for (; --i >= 0; n++) { - if (n->n_type == COMMA) { /* XXX Temporary */ - REQN(i, 1); - --i; - n++; - } REQ(n, ITEM); compile_item(ll, nf, n, &a, &b); addnfaarc(nf, *pb, a, EMPTY);