[Python-checkins] python/dist/src/Lib httplib.py,1.61,1.62

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Tue, 16 Jul 2002 14:41:45 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv29505

Modified Files:
	httplib.py 
Log Message:
Fix typos and such caught by the pycheckerbot.


Index: httplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/httplib.py,v
retrieving revision 1.61
retrieving revision 1.62
diff -C2 -d -r1.61 -r1.62
*** httplib.py	16 Jul 2002 21:35:23 -0000	1.61
--- httplib.py	16 Jul 2002 21:41:43 -0000	1.62
***************
*** 545,549 ****
                  raise NotConnected()
  
!         # send the data to the server. if we get a broken pipe, then closesdwu
          # the socket. we want to reconnect when somebody tries to send again.
          #
--- 545,549 ----
                  raise NotConnected()
  
!         # send the data to the server. if we get a broken pipe, then close
          # the socket. we want to reconnect when somebody tries to send again.
          #
***************
*** 562,566 ****
          """Add a line of output to the current request buffer.
          
!         Aassumes that the line does *not* end with \r\n.
          """
          self._buffer.append(s)
--- 562,566 ----
          """Add a line of output to the current request buffer.
          
!         Assumes that the line does *not* end with \\r\\n.
          """
          self._buffer.append(s)
***************
*** 569,573 ****
          """Send the currently buffered request and clear the buffer.
  
!         Appends an extra \r\n to the buffer.
          """
          self._buffer.extend(("", ""))
--- 569,573 ----
          """Send the currently buffered request and clear the buffer.
  
!         Appends an extra \\r\\n to the buffer.
          """
          self._buffer.extend(("", ""))