[Python-checkins] python/dist/src/Misc NEWS,1.967,1.968

theller at users.sourceforge.net theller at users.sourceforge.net
Thu Apr 22 13:23:42 EDT 2004


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8049

Modified Files:
	NEWS 
Log Message:
Two new public API functions, Py_IncRef and Py_DecRef.  Useful for
dynamic embedders of Python.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.967
retrieving revision 1.968
diff -C2 -d -r1.967 -r1.968
*** NEWS	20 Apr 2004 21:10:26 -0000	1.967
--- NEWS	22 Apr 2004 17:23:39 -0000	1.968
***************
*** 472,475 ****
--- 472,479 ----
  -----
  
+ - New public functions Py_IncRef() and Py_DecRef(), exposing the
+   functionality of the Py_XINCREF() and Py_XDECREF macros. Useful for
+   runtime dynamic embedding of Python.
+ 
  - Added a new macro, PySequence_Fast_ITEMS, which retrieves a fast sequence's
    underlying array of PyObject pointers.  Useful for high speed looping.




More information about the Python-checkins mailing list