Home | History | Annotate | Download | only in functional

Lines Matching refs:COLON

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
329 lambdef: 'lambda' (varargslist)? COLON test
343 | test (COLON (test)? (sliceop)?)?
344 | COLON (test)? (sliceop)?
347 sliceop: COLON (test)?
359 : test COLON test
360 (options {k=2;}:COMMA test COLON test)* (COMMA)?
363 classdef: 'class' NAME (LPAREN testlist RPAREN)? COLON suite
398 COLON : ':' ;