Searched refs:cmpop_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 331 static PyTypeObject *cmpop_type; variable 906 cmpop_type = make_type("cmpop", &AST_type, NULL, 0); in init_types() 907 if (!cmpop_type) return 0; in init_types() 908 if (!add_attributes(cmpop_type, NULL, 0)) return 0; in init_types() 909 Eq_type = make_type("Eq", cmpop_type, NULL, 0); in init_types() 913 NotEq_type = make_type("NotEq", cmpop_type, NULL, 0); in init_types() 917 Lt_type = make_type("Lt", cmpop_type, NULL, 0); in init_types() 921 LtE_type = make_type("LtE", cmpop_type, NULL, 0); in init_types() 925 Gt_type = make_type("Gt", cmpop_type, NULL, 0); in init_types() 929 GtE_type = make_type("GtE", cmpop_type, NULL, 0); in init_types() [all …]
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 420 static PyTypeObject *cmpop_type; variable 1097 cmpop_type = make_type("cmpop", &AST_type, NULL, 0); in init_types() 1098 if (!cmpop_type) return 0; in init_types() 1099 if (!add_attributes(cmpop_type, NULL, 0)) return 0; in init_types() 1100 Eq_type = make_type("Eq", cmpop_type, NULL, 0); in init_types() 1104 NotEq_type = make_type("NotEq", cmpop_type, NULL, 0); in init_types() 1108 Lt_type = make_type("Lt", cmpop_type, NULL, 0); in init_types() 1112 LtE_type = make_type("LtE", cmpop_type, NULL, 0); in init_types() 1116 Gt_type = make_type("Gt", cmpop_type, NULL, 0); in init_types() 1120 GtE_type = make_type("GtE", cmpop_type, NULL, 0); in init_types() [all …]
|