@@ -860,7 +860,7 @@ VALIDATER(term); VALIDATER(factor);
860860VALIDATER (atom ); VALIDATER (lambdef );
861861VALIDATER (trailer ); VALIDATER (subscript );
862862VALIDATER (subscriptlist ); VALIDATER (sliceop );
863- VALIDATER (exprlist ); VALIDATER (dictmaker );
863+ VALIDATER (exprlist ); VALIDATER (dictsetmaker );
864864VALIDATER (arglist ); VALIDATER (argument );
865865VALIDATER (listmaker ); VALIDATER (yield_stmt );
866866VALIDATER (testlist1 ); VALIDATER (gen_for );
@@ -2402,7 +2402,7 @@ validate_atom(node *tree)
24022402 && validate_ntype (CHILD (tree , nch - 1 ), RBRACE ));
24032403
24042404 if (res && (nch == 3 ))
2405- res = validate_dictmaker (CHILD (tree , 1 ));
2405+ res = validate_dictsetmaker (CHILD (tree , 1 ));
24062406 break ;
24072407 case NAME :
24082408 case NUMBER :
@@ -2838,10 +2838,10 @@ validate_exprlist(node *tree)
28382838
28392839
28402840static int
2841- validate_dictmaker (node * tree )
2841+ validate_dictsetmaker (node * tree )
28422842{
28432843 int nch = NCH (tree );
2844- int res = (validate_ntype (tree , dictmaker )
2844+ int res = (validate_ntype (tree , dictsetmaker )
28452845 && (nch >= 3 )
28462846 && validate_test (CHILD (tree , 0 ))
28472847 && validate_colon (CHILD (tree , 1 ))
0 commit comments