[Python-checkins] CVS: python/dist/src/Lib asynchat.py,1.12,1.13

Tim Peters tim_one@users.sourceforge.net
2001年4月05日 15:38:34 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv23665/python/dist/src/Lib
Modified Files:
	asynchat.py 
Log Message:
Fix the fix (my error -- hasty pasty).
Index: asynchat.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/asynchat.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** asynchat.py	2001年04月05日 22:26:23	1.12
--- asynchat.py	2001年04月05日 22:38:32	1.13
***************
*** 120,124 ****
 # collect data
 terminator_len = len(terminator)
! index = ac_in_buffer.find (self.terminator)
 if index != -1:
 # we found the terminator
--- 120,124 ----
 # collect data
 terminator_len = len(terminator)
! index = self.ac_in_buffer.find(terminator)
 if index != -1:
 # we found the terminator

AltStyle によって変換されたページ (->オリジナル) /