Home
last modified time | relevance | path

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

/external/python/cpython2/Grammar/
DGrammar14 # single_input is a single interactive statement;
17 # NB: compound_stmt in single_input is followed by extra NEWLINE!
18 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt27 # single_input is a single interactive statement;
29 # NB: compound_stmt in single_input is followed by extra NEWLINE!
31 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
/external/python/cpython2/Include/
Dgraminit.h3 #define single_input 256 macro
/external/python/cpython2/Lib/
Dsymbol.py13 single_input = 256 variable
/external/python/cpython2/Lib/compiler/
Dtransformer.py154 if n == symbol.single_input:
155 return self.single_input(node[1:])
169 def single_input(self, node): member in Transformer
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g76 single_input
/external/python/cpython2/Python/
Dast.c172 case single_input: in num_stmts()
280 case single_input: in PyAST_FromNode()