Searched refs:unaryop_type (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Include/internal/ |
D | pycore_ast_state.h | 243 PyObject *unaryop_type; member
|
/third_party/python/Python/ |
D | Python-ast.c | 257 Py_CLEAR(state->unaryop_type); in _PyAST_Fini() 1590 state->unaryop_type = make_type(state, "unaryop", state->AST_type, NULL, 0, in init_types() 1592 if (!state->unaryop_type) return 0; in init_types() 1593 if (!add_attributes(state, state->unaryop_type, NULL, 0)) return 0; in init_types() 1594 state->Invert_type = make_type(state, "Invert", state->unaryop_type, NULL, in init_types() 1602 state->Not_type = make_type(state, "Not", state->unaryop_type, NULL, 0, in init_types() 1608 state->UAdd_type = make_type(state, "UAdd", state->unaryop_type, NULL, 0, in init_types() 1614 state->USub_type = make_type(state, "USub", state->unaryop_type, NULL, 0, in init_types() 11864 if (PyModule_AddObjectRef(m, "unaryop", state->unaryop_type) < 0) { in astmodule_exec()
|