[Python-checkins] CVS: python/dist/src/Doc/lib libcode.tex,1.11,1.12

Fred L. Drake python-dev@python.org
Thu, 14 Sep 2000 13:43:01 -0700


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

Modified Files:
	libcode.tex 
Log Message:

Denis S. Otkidach <ods@users.sourceforge.net>:
Minor fix in documentation of code module.
(Clarifies output destination for default implementation of the write()
method.)


Index: libcode.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libcode.tex,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** libcode.tex	2000/07/16 19:01:09	1.11
--- libcode.tex	2000/09/14 20:42:53	1.12
***************
*** 127,132 ****
  
  \begin{methoddesc}{write}{data}
! Write a string to standard output.  Derived classes should override
! this to provide the appropriate output handling as needed.
  \end{methoddesc}
  
--- 127,133 ----
  
  \begin{methoddesc}{write}{data}
! Write a string to the standard error stream (\code{sys.stderr}).
! Derived classes should override this to provide the appropriate output
! handling as needed.
  \end{methoddesc}