Searched refs:cmpop_type (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Include/internal/ |
D | pycore_ast_state.h | 169 PyObject *cmpop_type; member
|
/third_party/python/Python/ |
D | Python-ast.c | 183 Py_CLEAR(state->cmpop_type); in _PyAST_Fini() 1620 state->cmpop_type = make_type(state, "cmpop", state->AST_type, NULL, 0, in init_types() 1622 if (!state->cmpop_type) return 0; in init_types() 1623 if (!add_attributes(state, state->cmpop_type, NULL, 0)) return 0; in init_types() 1624 state->Eq_type = make_type(state, "Eq", state->cmpop_type, NULL, 0, in init_types() 1630 state->NotEq_type = make_type(state, "NotEq", state->cmpop_type, NULL, 0, in init_types() 1636 state->Lt_type = make_type(state, "Lt", state->cmpop_type, NULL, 0, in init_types() 1642 state->LtE_type = make_type(state, "LtE", state->cmpop_type, NULL, 0, in init_types() 1648 state->Gt_type = make_type(state, "Gt", state->cmpop_type, NULL, 0, in init_types() 1654 state->GtE_type = make_type(state, "GtE", state->cmpop_type, NULL, 0, in init_types() [all …]
|