[Python-checkins] CVS: python/dist/src/Doc/api refcounts.dat,1.23,1.24

Fred L. Drake fdrake@users.sourceforge.net
Tue, 29 May 2001 08:34:08 -0700


Update of /cvsroot/python/python/dist/src/Doc/api
In directory usw-pr-cvs1:/tmp/cvs-serv16570/api

Modified Files:
	refcounts.dat 
Log Message:
Removed information on the old third parameter to _PyTuple_Resize().

Added information on PyIter_Check(), PyIter_Next(),
PyObject_Unicode(), PyString_AsDecodedObject(),
PyString_AsEncodedObject(), and PyThreadState_GetDict().


Index: refcounts.dat
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/refcounts.dat,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** refcounts.dat	2001/01/28 06:39:35	1.23
--- refcounts.dat	2001/05/29 15:34:06	1.24
***************
*** 364,367 ****
--- 364,372 ----
  PyInterpreterState_New:PyInterpreterState*:::
  
+ PyIter_Check:int:o:0:
+ 
+ PyIter_Next:PyObject*::+1:
+ PyIter_Next:PyObject*:o:0:
+ 
  PyList_Append:int:::
  PyList_Append:PyObject*:list:0:
***************
*** 729,732 ****
--- 734,740 ----
  PyObject_Type:PyObject*:o:0:
  
+ PyObject_Unicode:PyObject*::+1:
+ PyObject_Unicode:PyObject*:o:0:
+ 
  PyParser_SimpleParseFile:struct _node*:::
  PyParser_SimpleParseFile:FILE*:fp::
***************
*** 847,850 ****
--- 855,868 ----
  PyString_AS_STRING:PyObject*:string:0:
  
+ PyString_AsDecodedObject:PyObject*::+1:
+ PyString_AsDecodedObject:PyObject*:str:0:
+ PyString_AsDecodedObject:const char*:encoding::
+ PyString_AsDecodedObject:const char*:errors::
+ 
+ PyString_AsEncodedObject:PyObject*::+1:
+ PyString_AsEncodedObject:PyObject*:str:0:
+ PyString_AsEncodedObject:const char*:encoding::
+ PyString_AsEncodedObject:const char*:errors::
+ 
  PyString_AsString:char*:::
  PyString_AsString:PyObject*:string:0:
***************
*** 918,921 ****
--- 936,941 ----
  PyThreadState_Get:PyThreadState*:::
  
+ PyThreadState_GetDict:PyObject*::0:
+ 
  PyThreadState_New:PyThreadState*:::
  PyThreadState_New:PyInterpreterState*:interp::
***************
*** 1330,1334 ****
  _PyTuple_Resize:PyTupleObject**:p:+1:
  _PyTuple_Resize:int:new::
- _PyTuple_Resize:int:last_is_sticky::
  
  _Py_c_diff:Py_complex:::
--- 1350,1353 ----