Home | History | Annotate | Download | only in functional

Lines Matching refs:testlist

87     :   (NEWLINE)* testlist (NEWLINE)*
144 : testlist
145 ( augassign testlist
146 | (ASSIGN testlist)+
167 ( testlist
168 | RIGHTSHIFT testlist
191 return_stmt: 'return' (testlist)?
194 yield_stmt: 'yield' testlist
240 for_stmt: 'for' exprlist 'in' testlist COLON suite ('else' COLON suite)?
314 atom: LPAREN (testlist)? RPAREN
317 | BACKQUOTE testlist BACKQUOTE
354 testlist
363 classdef: 'class' NAME (LPAREN testlist RPAREN)? COLON suite
384 list_for: 'for' exprlist 'in' testlist (list_iter)?