Searched refs:arguments_type (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Include/internal/ |
D | pycore_ast_state.h | 159 PyObject *arguments_type; member
|
/third_party/python/Python/ |
D | Python-ast.c | 173 Py_CLEAR(state->arguments_type); in _PyAST_Fini() 1711 state->arguments_type = make_type(state, "arguments", state->AST_type, in init_types() 1714 if (!state->arguments_type) return 0; in init_types() 1715 if (!add_attributes(state, state->arguments_type, NULL, 0)) return 0; in init_types() 1716 if (PyObject_SetAttr(state->arguments_type, state->vararg, Py_None) == -1) in init_types() 1718 if (PyObject_SetAttr(state->arguments_type, state->kwarg, Py_None) == -1) in init_types() 4881 tp = (PyTypeObject *)state->arguments_type; in ast2obj_arguments() 11924 if (PyModule_AddObjectRef(m, "arguments", state->arguments_type) < 0) { in astmodule_exec()
|
/third_party/python/Parser/ |
D | parser.c | 235 #define arguments_type 1159 macro 16301 if (_PyPegen_is_memoized(p, arguments_type, &_res)) { in arguments_rule() 16357 _PyPegen_insert_memo(p, _mark, arguments_type, _res); in arguments_rule()
|