[Python-checkins] python/dist/src/Doc/api init.tex,1.14,1.15

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Wed Mar 17 20:38:13 EST 2004


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

Modified Files:
	init.tex 
Log Message:
Minor grammatical fixes.


Index: init.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/init.tex,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** init.tex	18 Mar 2004 00:49:01 -0000	1.14
--- init.tex	18 Mar 2004 01:38:11 -0000	1.15
***************
*** 83,87 ****
  
    The return value points to the first thread state created in the new
!   sub-interpreter.  This thread state is made the current thread
    state.  Note that no actual thread is created; see the discussion of
    thread states below.  If creation of the new interpreter is
--- 83,87 ----
  
    The return value points to the first thread state created in the new
!   sub-interpreter.  This thread state is made in the current thread
    state.  Note that no actual thread is created; see the discussion of
    thread states below.  If creation of the new interpreter is
***************
*** 458,462 ****
  When creating a thread data structure, you need to provide an
  interpreter state data structure.  The interpreter state data
! structure hold global data that is shared by all threads in an
  interpreter, for example the module administration
  (\code{sys.modules}).  Depending on your needs, you can either create
--- 458,462 ----
  When creating a thread data structure, you need to provide an
  interpreter state data structure.  The interpreter state data
! structure holds global data that is shared by all threads in an
  interpreter, for example the module administration
  (\code{sys.modules}).  Depending on your needs, you can either create
***************
*** 556,560 ****
  
  \begin{cfuncdesc}{void}{PyEval_AcquireThread}{PyThreadState *tstate}
!   Acquire the global interpreter lock and then set the current thread
    state to \var{tstate}, which should not be \NULL.  The lock must
    have been created earlier.  If this thread already has the lock,
--- 556,560 ----
  
  \begin{cfuncdesc}{void}{PyEval_AcquireThread}{PyThreadState *tstate}
!   Acquire the global interpreter lock and set the current thread
    state to \var{tstate}, which should not be \NULL.  The lock must
    have been created earlier.  If this thread already has the lock,




More information about the Python-checkins mailing list