[Python-checkins] python/dist/src/Doc/api exceptions.tex, 1.15.10.1, 1.15.10.2

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue May 11 23:22:59 EDT 2004


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

Modified Files:
      Tag: release23-maint
	exceptions.tex 
Log Message:
backport 1.17, 1.18 from the trunk: PyErr_SetInterrupt not Obsolete
(closes SF patch #919299)


Index: exceptions.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/exceptions.tex,v
retrieving revision 1.15.10.1
retrieving revision 1.15.10.2
diff -C2 -d -r1.15.10.1 -r1.15.10.2
*** exceptions.tex	7 Dec 2003 11:43:56 -0000	1.15.10.1
--- exceptions.tex	12 May 2004 03:22:57 -0000	1.15.10.2
***************
*** 300,304 ****
  
  \begin{cfuncdesc}{void}{PyErr_SetInterrupt}{}
!   This function is obsolete.  It simulates the effect of a
    \constant{SIGINT}\ttindex{SIGINT} signal arriving --- the next time
    \cfunction{PyErr_CheckSignals()} is called,
--- 300,304 ----
  
  \begin{cfuncdesc}{void}{PyErr_SetInterrupt}{}
!   This function simulates the effect of a
    \constant{SIGINT}\ttindex{SIGINT} signal arriving --- the next time
    \cfunction{PyErr_CheckSignals()} is called,
***************
*** 306,309 ****
--- 306,311 ----
    \exception{KeyboardInterrupt} will be raised.  It may be called
    without holding the interpreter lock.
+   % XXX This was described as obsolete, but is used in
+   % thread.interrupt_main() (used from IDLE), so it's still needed.
  \end{cfuncdesc}
  




More information about the Python-checkins mailing list