Home
last modified time | relevance | path

Searched refs:PyST_Type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
Dparsermodule.c225 PyTypeObject PyST_Type = { variable
263 #define PyST_Object_Check(v) ((v)->ob_type == &PyST_Type)
338 PyST_Object* o = PyObject_New(PyST_Object, &PyST_Type); in parser_newstobject()
392 &PyST_Type, &self, &line_info, in parser_st2tuple()
428 &PyST_Type, &self, &line_info, in parser_st2list()
464 &PyST_Type, &self, in parser_compilest()
514 &PyST_Type, &self); in parser_isexpr()
537 &PyST_Type, &self); in parser_issuite()
1061 if (PyArg_ParseTuple(args, "O!:_pickler", &PyST_Type, &st)) { in parser__pickler()
1137 if (PyType_Ready(&PyST_Type) < 0) in PyInit_parser()
[all …]
/external/python/cpython2/Modules/
Dparsermodule.c201 PyTypeObject PyST_Type = { variable
298 PyST_Object* o = PyObject_New(PyST_Object, &PyST_Type); in parser_newstobject()
343 &PyST_Type, &self, &line_option, in parser_st2tuple()
399 &PyST_Type, &self, &line_option, in parser_st2list()
455 &PyST_Type, &self, &str); in parser_compilest()
500 &PyST_Type, &self); in parser_isexpr()
523 &PyST_Type, &self); in parser_issuite()
3403 if (PyArg_ParseTuple(args, "O!:_pickler", &PyST_Type, &st)) { in parser__pickler()
3476 Py_TYPE(&PyST_Type) = &PyType_Type; in initparser()
3497 Py_INCREF(&PyST_Type); in initparser()
[all …]