Searched refs:PySet_Type (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Include/ |
D | setobject.h | 76 PyAPI_DATA(PyTypeObject) PySet_Type; 96 (Py_IS_TYPE(ob, &PySet_Type) || Py_IS_TYPE(ob, &PyFrozenSet_Type)) 98 (Py_IS_TYPE(ob, &PySet_Type) || Py_IS_TYPE(ob, &PyFrozenSet_Type) || \ 99 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \ 102 #define PySet_CheckExact(op) Py_IS_TYPE(op, &PySet_Type) 104 (Py_IS_TYPE(ob, &PySet_Type) || \ 105 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type))
|
/third_party/python/Objects/ |
D | setobject.c | 983 if (type != &PySet_Type && type != &PyFrozenSet_Type) { in make_new_set_basetype() 984 if (PyType_IsSubtype(type, &PySet_Type)) in make_new_set_basetype() 985 type = &PySet_Type; in make_new_set_basetype() 1715 tmp = make_new_set(&PySet_Type, other); in set_issubset() 1743 tmp = make_new_set(&PySet_Type, other); in set_issuperset() 2088 PyTypeObject PySet_Type = { variable 2241 return make_new_set(&PySet_Type, iterable); in PySet_New()
|
D | object.c | 1857 INIT_TYPE(PySet_Type); in _PyTypes_Init()
|
/third_party/python/Doc/c-api/ |
D | set.rst | 38 .. c:var:: PyTypeObject PySet_Type
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 556 var,PySet_Type,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 844 EXPORT_DATA(PySet_Type)
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1193 data PySet_Type
|
/third_party/python/Python/ |
D | bltinmodule.c | 3031 SETBUILTIN("set", &PySet_Type); in _PyBuiltin_Init()
|
D | compile.c | 4131 return &PySet_Type; in infer_type()
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 880 Objects/setobject.c:PySet_Type PyTypeObject PySet_Type
|
/third_party/python/Modules/ |
D | _pickle.c | 3386 reduce_value = Py_BuildValue("(O(O))", (PyObject*)&PySet_Type, items); in save_set() 4323 else if (type == &PySet_Type) { in save()
|
/third_party/python/Lib/test/ |
D | clinic.test | 138 d: object(subclass_of="&PySet_Type")
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | ignored.tsv | 1586 Objects/setobject.c - PySet_Type -
|