Home
last modified time | relevance | path

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

/external/python/cpython2/Grammar/
DGrammar74 with_stmt: 'with' with_item (',' with_item)* ':' suite
75 with_item: test ['as' expr]
/external/python/cpython3/Grammar/
DGrammar80 with_stmt: 'with' with_item (',' with_item)* ':' suite
81 with_item: test ['as' expr]
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt94 with_stmt: 'with' with_item (',' with_item)* ':' suite
95 with_item: test ['as' expr]
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt97 with_stmt: 'with' with_item (',' with_item)* ':' suite
98 with_item: test ['as' expr]
/external/python/cpython2/Include/
Dgraminit.h45 #define with_item 298 macro
/external/python/cpython3/Include/
Dgraminit.h49 #define with_item 302 macro
/external/python/cpython2/Lib/
Dsymbol.py55 with_item = 298 variable
/external/python/cpython3/Lib/
Dsymbol.py59 with_item = 302 variable
/external/python/cpython2/Doc/reference/
Dcompound_stmts.rst360 with_stmt: "with" with_item ("," with_item)* ":" `suite`
361 with_item: `expression` ["as" `target`]
365 #. The context expression (the expression given in the :token:`with_item`) is
/external/python/cpython3/Doc/reference/
Dcompound_stmts.rst386 with_stmt: "with" with_item ("," with_item)* ":" `suite`
387 with_item: `expression` ["as" `target`]
391 #. The context expression (the expression given in the :token:`with_item`) is
/external/python/cpython2/Modules/
Dparsermodule.c2661 int ok = (validate_ntype(tree, with_item) in validate_with_item()
/external/python/cpython2/Python/
Dast.c3145 REQ(n, with_item); in ast_for_with_item()
/external/python/cpython3/Python/
Dast.c3857 REQ(n, with_item); in ast_for_with_item()