Home
last modified time | relevance | path

Searched refs:PySet_Type (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Include/
Dsetobject.h76 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/
Dsetobject.c983 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()
Dobject.c1857 INIT_TYPE(PySet_Type); in _PyTypes_Init()
/third_party/python/Doc/c-api/
Dset.rst38 .. c:var:: PyTypeObject PySet_Type
/third_party/python/Doc/data/
Dstable_abi.dat556 var,PySet_Type,3.2,
/third_party/python/PC/
Dpython3dll.c844 EXPORT_DATA(PySet_Type)
/third_party/python/Misc/
Dstable_abi.txt1193 data PySet_Type
/third_party/python/Python/
Dbltinmodule.c3031 SETBUILTIN("set", &PySet_Type); in _PyBuiltin_Init()
Dcompile.c4131 return &PySet_Type; in infer_type()
/third_party/python/Tools/c-analyzer/
DTODO880 Objects/setobject.c:PySet_Type PyTypeObject PySet_Type
/third_party/python/Modules/
D_pickle.c3386 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/
Dclinic.test138 d: object(subclass_of="&PySet_Type")
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv1586 Objects/setobject.c - PySet_Type -