[Python-checkins] python/dist/src/Doc/api refcounts.dat,1.44,1.45

rhettinger@users.sourceforge.net rhettinger at users.sourceforge.net
Sun Aug 21 01:52:42 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/api
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28881

Modified Files:
	refcounts.dat 
Log Message:
Add info about the set API.

Index: refcounts.dat
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/refcounts.dat,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- refcounts.dat	4 Oct 2002 18:58:58 -0000	1.44
+++ refcounts.dat	20 Aug 2005 23:52:30 -0000	1.45
@@ -1009,6 +1009,25 @@
 PySequence_Tuple:PyObject*::+1:
 PySequence_Tuple:PyObject*:o:0:
 
+PySet_Append:int:::
+PySet_Append:PyObject*:set:0:
+PySet_Append:PyObject*:key:+1:
+
+PySet_Contains:int:::
+PySet_Contains:PyObject*:anyset:0:
+PySet_Contains:PyObject*:key:0:
+
+PySet_Discard:int:::
+PySet_Discard:PyObject*:set:0:
+PySet_Discard:PyObject*:key:-1:no effect if key not found
+
+PySet_Pop:PyObject*::+1:or NULL if key not found
+PySet_Pop:PyObject*:set:0:
+PySet_Pop:PyObject*:key:-1:no effect if key not found
+
+PySet_Size:int:::
+PySet_Size:PyObject*:anyset:0:
+
 PySlice_Check:int:::
 PySlice_Check:PyObject*:ob:0:
 



More information about the Python-checkins mailing list