fix bug with missing default for last arg (discovered by Tommy Burnette)

This commit is contained in:
Guido van Rossum 1995-09-18 21:44:04 +00:00
parent befa14f1b9
commit a1e7e62893

View file

@ -2139,8 +2139,9 @@ com_argdefs(c, n)
nargs++; nargs++;
i++; i++;
if (i >= nch) if (i >= nch)
break; t = RPAR; /* Anything except EQUAL or COMMA */
t = TYPE(CHILD(n, i)); else
t = TYPE(CHILD(n, i));
if (t == EQUAL) { if (t == EQUAL) {
i++; i++;
ndefs++; ndefs++;