summaryrefslogtreecommitdiff
path: root/Include/setobject.h
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-08-16 03:47:52 +0000
committerRaymond Hettinger <python@rcn.com>2005-08-16 03:47:52 +0000
commitbeb3101b051e415cb18ba844e0187a8caa7ac3fd (patch)
tree999f1f843ca5b7b67f668fc3ac970e239dd3a4ec /Include/setobject.h
parente2eca0b709451e6956d7c84658e9c29037be7c0c (diff)
downloadcpython-git-beb3101b051e415cb18ba844e0187a8caa7ac3fd.tar.gz
Add a C API for sets and frozensets.
Diffstat (limited to 'Include/setobject.h')
-rw-r--r--Include/setobject.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Include/setobject.h b/Include/setobject.h
index 6a829f0cb0..b6849e14c9 100644
--- a/Include/setobject.h
+++ b/Include/setobject.h
@@ -74,6 +74,15 @@ PyAPI_DATA(PyTypeObject) PyFrozenSet_Type;
PyType_IsSubtype((ob)->ob_type, &PySet_Type) || \
PyType_IsSubtype((ob)->ob_type, &PyFrozenSet_Type))
+PyAPI_FUNC(PyObject *) PySet_New(PyObject *);
+PyAPI_FUNC(PyObject *) PyFrozenSet_New(PyObject *);
+PyAPI_FUNC(int) PySet_Size(PyObject *anyset);
+#define PySet_GET_SIZE(so) (((PySetObject *)(so))->used)
+PyAPI_FUNC(int) PySet_Contains(PyObject *anyset, PyObject *key);
+PyAPI_FUNC(int) PySet_Discard(PyObject *anyset, PyObject *key);
+PyAPI_FUNC(int) PySet_Add(PyObject *set, PyObject *key);
+PyAPI_FUNC(PyObject *) PySet_Pop(PyObject *set);
+
#ifdef __cplusplus
}
#endif