Home
last modified time | relevance | path

Searched refs:with_item (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/
Dgraminit.h49 #define with_item 302 macro
/third_party/python/Lib/
Dsymbol.py70 with_item = 302 variable
/third_party/python/Lib/lib2to3/
DGrammar.txt118 with_stmt: 'with' with_item (',' with_item)* ':' suite
119 with_item: test ['as' expr]
/third_party/python/Grammar/
DGrammar124 with_stmt: 'with' with_item (',' with_item)* ':' [TYPE_COMMENT] suite
125 with_item: test ['as' expr]
Dpython.gram176 | '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/
Dcompound_stmts.rst396 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/
Dast.c4257 REQ(n, with_item); in ast_for_with_item()