[Python-checkins] python/dist/src/Lib asyncore.py,1.47,1.48

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Sun Mar 21 14:52:04 EST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9569

Modified Files:
	asyncore.py 
Log Message:
[Part of patch #909005] Remove Mac code for writable

Index: asyncore.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/asyncore.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -C2 -d -r1.47 -r1.48
*** asyncore.py	21 Mar 2004 19:50:09 -0000	1.47
--- asyncore.py	21 Mar 2004 19:52:01 -0000	1.48
***************
*** 260,271 ****
          return True
  
!     if os.name == 'mac':
!         # The macintosh will select a listening socket for
!         # write if you let it.  What might this mean?
!         def writable(self):
!             return not self.accepting
!     else:
!         def writable(self):
!             return True
  
      # ==================================================
--- 260,265 ----
          return True
  
!     def writable(self):
!         return True
  
      # ==================================================




More information about the Python-checkins mailing list