Searched refs:PyGen_Type (Results 1 – 9 of 9) sorted by relevance
| /third_party/python/Include/ |
| D | genobject.h | 35 PyAPI_DATA(PyTypeObject) PyGen_Type; 37 #define PyGen_Check(op) PyObject_TypeCheck(op, &PyGen_Type) 38 #define PyGen_CheckExact(op) Py_IS_TYPE(op, &PyGen_Type)
|
| /third_party/python/Doc/c-api/ |
| D | gen.rst | 18 .. c:var:: PyTypeObject PyGen_Type 31 Return true if *ob*'s type is :c:type:`PyGen_Type`; *ob* must not be
|
| /third_party/python/Objects/ |
| D | genobject.c | 777 PyTypeObject PyGen_Type = { variable 865 return gen_new_with_qualname(&PyGen_Type, f, name, qualname); in PyGen_NewWithQualName() 871 return gen_new_with_qualname(&PyGen_Type, f, NULL, NULL); in PyGen_New()
|
| D | object.c | 1830 INIT_TYPE(PyGen_Type); in _PyTypes_Init()
|
| /third_party/python/Tools/c-analyzer/ |
| D | TODO | 848 Objects/genobject.c:PyGen_Type PyTypeObject PyGen_Type
|
| /third_party/python/Modules/ |
| D | _asynciomodule.c | 2894 res = PyObject_IsInstance(result, (PyObject*)&PyGen_Type); in task_step_impl()
|
| D | _testcapimodule.c | 4978 if (!PyArg_ParseTuple(args, "O!", &PyGen_Type, &gen)) in raise_SIGINT_then_send_None()
|
| /third_party/python/Tools/c-analyzer/cpython/ |
| D | ignored.tsv | 1588 Objects/genobject.c - PyGen_Type -
|
| /third_party/python/Python/ |
| D | compile.c | 4133 return &PyGen_Type; in infer_type()
|