[Python-checkins] CVS: python/dist/src/Doc/lib libasyncore.tex,1.5,1.6

Fred L. Drake python-dev@python.org
Tue, 31 Oct 2000 19:12:37 -0800


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

Modified Files:
	libasyncore.tex 
Log Message:

Typo:  writeable --> writable
Reported by Erno Kuusela <erno@iki.fi>.


Index: libasyncore.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libasyncore.tex,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** libasyncore.tex	2000/07/16 19:01:09	1.5
--- libasyncore.tex	2000/11/01 03:12:34	1.6
***************
*** 104,108 ****
  \end{methoddesc}
  
! \begin{methoddesc}{writeable}{}
    Each time through the \method{select()} loop, the set of sockets 
    is scanned, and this method is called to see if there is any 
--- 104,108 ----
  \end{methoddesc}
  
! \begin{methoddesc}{writable}{}
    Each time through the \method{select()} loop, the set of sockets 
    is scanned, and this method is called to see if there is any 
***************
*** 188,192 ****
          print data
          
!     def writeable(self):
          return (len(self.buffer) > 0)
      
--- 188,192 ----
          print data
          
!     def writable(self):
          return (len(self.buffer) > 0)