Home
last modified time | relevance | path

Searched refs:global_stmt (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dgraminit.h36 #define global_stmt 289 macro
/external/python/cpython2/Lib/
Dsymbol.py46 global_stmt = 289 variable
/external/python/cpython2/Grammar/
DGrammar36 import_stmt | global_stmt | exec_stmt | assert_stmt)
61 global_stmt: 'global' NAME (',' NAME)*
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt55 import_stmt | global_stmt | exec_stmt | assert_stmt)
81 global_stmt: ('global' | 'nonlocal') NAME (',' NAME)*
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g138 | global_stmt
216 global_stmt: 'global' NAME (COMMA NAME)*
/external/python/cpython2/Modules/
Dparsermodule.c953 VALIDATER(global_stmt); VALIDATER(list_if);
1571 || (ntype == global_stmt) in validate_small_stmt()
1980 int res = (validate_ntype(tree, global_stmt) in validate_global_stmt()
3203 case global_stmt: in validate_node()
/external/python/cpython2/Lib/compiler/
Dtransformer.py476 def global_stmt(self, nodelist): member in Transformer
1473 symbol.global_stmt,
/external/python/cpython2/Doc/reference/
Dsimple_stmts.rst28 : | `global_stmt`
948 global_stmt: "global" `identifier` ("," `identifier`)*
/external/python/cpython2/Python/
Dast.c2652 REQ(n, global_stmt); in ast_for_global_stmt()
3278 case global_stmt: in ast_for_stmt()