Home
last modified time | relevance | path

Searched refs:import_from (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Dgraminit.h30 #define import_from 283 macro
/external/python/cpython2/Lib/
Dsymbol.py40 import_from = 283 variable
/external/python/cpython2/Lib/lib2to3/
Dfixer_util.py129 imp = Node(syms.import_from, children)
292 return node.type in (syms.import_name, syms.import_from)
413 elif node.type == syms.import_from:
DGrammar.txt72 import_stmt: import_name | import_from
74 import_from: ('from' ('.'* dotted_name | '.'+)
/external/python/cpython2/Grammar/
DGrammar52 import_stmt: import_name | import_from
54 import_from: ('from' ('.'* dotted_name | '.'+)
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_import.py56 if node.type == syms.import_from:
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/
Dimport_statement.py221 if children[0].type != symbol.import_from:
/external/python/cpython2/Modules/
Dparsermodule.c952 VALIDATER(import_name); VALIDATER(import_from);
1928 int res = validate_ntype(tree, import_from) in validate_import_from()
1956 if (ntype == import_name || ntype == import_from) in validate_import_stmt()
3200 case import_from: in validate_node()
/external/python/cpython2/Python/
Dceval.c141 static PyObject * import_from(PyObject *, PyObject *);
2656 x = import_from(v, w); in PyEval_EvalFrameEx()
4866 import_from(PyObject *v, PyObject *name) in import_from() function
Dast.c2567 else if (TYPE(n) == import_from) { in ast_for_import_stmt()
/external/python/cpython2/Lib/compiler/
Dtransformer.py454 def import_from(self, nodelist): member in Transformer