• Benjamin Peterson's avatar
    Merged revisions 67442 via svnmerge from · 1742e401
    Benjamin Peterson yazdı
    svn+ssh://pythondev@svn.python.org/python/trunk
    
    ........
      r67442 | jeremy.hylton | 2008-11-28 19:09:35 -0600 (Fri, 28 Nov 2008) | 18 lines
    
      Send HTTP headers and message body in a single send() call.
    
      This change addresses part of issue 4336.
    
      Change endheaders() to take an optional message_body argument
      that is sent along with the headers.  Change xmlrpclib and
      httplib's other methods to use this new interface.
    
      It is more efficient to make a single send() call, which should
      get the entire client request into one packet (assuming it is
      smaller than the MTU) and will avoid the long pause for delayed
      ack following timeout.
    
      Also:
      - Add a comment about the buffer size for makefile().
      - Extract _set_content_length() method and fix whitespace issues there.
    ........
    1742e401
client.py 36.8 KB