[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
- Previous message: [Python-checkins] python/dist/src/Lib/test regrtest.py,1.87,1.88 test_atexit.py,1.4,1.5 test_b1.py,1.47,1.48 test_generators.py,1.34,1.35 test_httplib.py,1.7,1.8 test_signal.py,1.10,1.11 test_types.py,1.34,1.35
- Next message: [Python-checkins] python/dist/src/Lib/test test_iter.py,1.24,1.25
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
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(("", ""))
- Previous message: [Python-checkins] python/dist/src/Lib/test regrtest.py,1.87,1.88 test_atexit.py,1.4,1.5 test_b1.py,1.47,1.48 test_generators.py,1.34,1.35 test_httplib.py,1.7,1.8 test_signal.py,1.10,1.11 test_types.py,1.34,1.35
- Next message: [Python-checkins] python/dist/src/Lib/test test_iter.py,1.24,1.25
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]