[Python-checkins] CVS: python/dist/src/Doc/lib libasyncore.tex,1.6,1.7
Fred L. Drake
fdrake@users.sourceforge.net
2001年4月09日 08:57:08 -0700
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv28403
Modified Files:
libasyncore.tex
Log Message:
Fix typo in example (\b should be \n in string literal).
This closes SF bug #414279.
Index: libasyncore.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libasyncore.tex,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** libasyncore.tex 2000年11月01日 03:12:34 1.6
--- libasyncore.tex 2001年04月09日 15:57:06 1.7
***************
*** 179,183 ****
self.create_socket(socket.AF_INET, socket.SOCK_STREAM)
self.connect( (host, 80) )
! self.buffer = 'GET %s HTTP/1.0\r\b\r\n' % self.path
def handle_connect(self):
--- 179,183 ----
self.create_socket(socket.AF_INET, socket.SOCK_STREAM)
self.connect( (host, 80) )
! self.buffer = 'GET %s HTTP/1.0\r\n\r\n' % self.path
def handle_connect(self):