[Python-checkins] CVS: python/dist/src/Doc/api api.tex,1.68,1.69

Fred L. Drake python-dev@python.org
Wed, 28 Jun 2000 08:53:17 -0700


Update of /cvsroot/python/python/dist/src/Doc/api
In directory slayer.i.sourceforge.net:/tmp/cvs-serv11228/api

Modified Files:
	api.tex 
Log Message:

Added documentation for PyOS_AfterFork().


Index: api.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/api.tex,v
retrieving revision 1.68
retrieving revision 1.69
diff -C2 -r1.68 -r1.69
*** api.tex	2000/06/18 05:21:21	1.68
--- api.tex	2000/06/28 15:53:13	1.69
***************
*** 1034,1037 ****
--- 1034,1044 ----
  \end{cfuncdesc}
  
+ \begin{cfuncdesc}{void}{PyOS_AfterFork}{}
+ Function to update some internal state after a process fork; this
+ should be called in the new process if the Python interpreter will
+ continue to be used.  If a new executable is loaded into the new
+ process, this function does not need to be called.
+ \end{cfuncdesc}
+ 
  
  \section{Process Control \label{processControl}}