Searched refs:with_item (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Include/ |
D | graminit.h | 49 #define with_item 302 macro
|
/third_party/python/Lib/ |
D | symbol.py | 70 with_item = 302 variable
|
/third_party/python/Lib/lib2to3/ |
D | Grammar.txt | 118 with_stmt: 'with' with_item (',' with_item)* ':' suite 119 with_item: test ['as' expr]
|
/third_party/python/Grammar/ |
D | Grammar | 124 with_stmt: 'with' with_item (',' with_item)* ':' [TYPE_COMMENT] suite 125 with_item: test ['as' expr]
|
D | python.gram | 176 | 'with' '(' a=','.with_item+ ','? ')' ':' b=block { 178 | 'with' a=','.with_item+ ':' tc=[TYPE_COMMENT] b=block { 180 | ASYNC 'with' '(' a=','.with_item+ ','? ')' ':' b=block { 182 | ASYNC 'with' a=','.with_item+ ':' tc=[TYPE_COMMENT] b=block { 184 with_item[withitem_ty]:
|
/third_party/python/Doc/reference/ |
D | compound_stmts.rst | 396 with_stmt: "with" `with_item` ("," `with_item`)* ":" `suite` 397 with_item: `expression` ["as" `target`] 401 #. The context expression (the expression given in the :token:`with_item`) is
|
/third_party/python/Python/ |
D | ast.c | 4257 REQ(n, with_item); in ast_for_with_item()
|