[Python-checkins] python/dist/src/Doc/lib libsys.tex,1.72,1.73

pje at users.sourceforge.net pje at users.sourceforge.net
Thu Aug 5 14:13:54 CEST 2004


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

Modified Files:
	libsys.tex 
Log Message:
Warn that settrace() is implementation rather than language
definition, per Guido's request  in off-list email.

Index: libsys.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsys.tex,v
retrieving revision 1.72
retrieving revision 1.73
diff -C2 -d -r1.72 -r1.73
*** libsys.tex	16 Jun 2004 04:53:46 -0000	1.72
--- libsys.tex	5 Aug 2004 12:13:46 -0000	1.73
***************
*** 476,480 ****
    thread-specific; for a debugger to support multiple threads, it must
    be registered using \function{settrace()} for each thread being
!   debugged.
  \end{funcdesc}
  
--- 476,484 ----
    thread-specific; for a debugger to support multiple threads, it must
    be registered using \function{settrace()} for each thread being
!   debugged.  \note{The \function{settrace()} function is intended only
!   for implementing debuggers, profilers, coverage tools and the like.
!   Its behavior is part of the implementation platform, rather than 
!   part of the language definition, and thus may not be available in
!   all Python implementations.}
  \end{funcdesc}
  



More information about the Python-checkins mailing list