]> granicus.if.org Git - python/commitdiff
The docs for httplib.HTTPConnection.putheader() have claimed for quite a while
authorBrett Cannon <bcannon@gmail.com>
Sat, 15 Nov 2008 22:40:44 +0000 (22:40 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sat, 15 Nov 2008 22:40:44 +0000 (22:40 +0000)
that their could be an arbitrary number of values passed in. Turns out the code
did not match that. The code now matches the docs.

Lib/httplib.py
Misc/NEWS

index 2830ad726dce160edf66fa8372b095535280f08f..bbda4321f2d805e585ae304e47949e26d4e46d5b 100644 (file)
@@ -846,7 +846,7 @@ class HTTPConnection:
             # For HTTP/1.0, the server will assume "not chunked"
             pass
 
-    def putheader(self, header, value):
+    def putheader(self, header, *values):
         """Send a request header line to the server.
 
         For example: h.putheader('Accept', 'text/html')
@@ -854,7 +854,7 @@ class HTTPConnection:
         if self.__state != _CS_REQ_STARTED:
             raise CannotSendHeader()
 
-        str = '%s: %s' % (header, value)
+        str = '%s: %s' % (header, '\r\n\t'.join(values))
         self._output(str)
 
     def endheaders(self):
@@ -989,6 +989,7 @@ class HTTP:
         # set up delegation to flesh out interface
         self.send = conn.send
         self.putrequest = conn.putrequest
+        self.putheader = conn.putheader
         self.endheaders = conn.endheaders
         self.set_debuglevel = conn.set_debuglevel
 
@@ -1008,10 +1009,6 @@ class HTTP:
         "Provide a getfile, since the superclass' does not use this concept."
         return self.file
 
-    def putheader(self, header, *values):
-        "The superclass allows only one value argument."
-        self._conn.putheader(header, '\r\n\t'.join(values))
-
     def getreply(self):
         """Compat definition since superclass does not define it.
 
index 2adff6edb15c527a141664053db46d8f0d5ac11d..cc719439867fac667d24bb5bf66e2e2e6460358a 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,9 @@ Core and Builtins
 Library
 -------
 
+- httplib.HTTPConnection.putheader() now accepts an arbitrary number of values
+  for any header, matching what the documentation has claimed for a while.
+
 - Issue #3774: Fixed an error when create a Tkinter menu item without command
   and then remove it.