Home | History | Annotate | Download | only in functional

Lines Matching refs:suite

91     :   'def' NAME parameters COLON suite
234 if_stmt: 'if' test COLON suite ('elif' test COLON suite)* ('else' COLON suite)?
237 while_stmt: 'while' test COLON suite ('else' COLON suite)?
240 for_stmt: 'for' exprlist 'in' testlist COLON suite ('else' COLON suite)?
244 : 'try' COLON suite
245 ( (except_clause COLON suite)+ ('else' COLON suite)?
246 | 'finally' COLON suite
253 suite: simple_stmt
363 classdef: 'class' NAME (LPAREN testlist RPAREN)? COLON suite