The docs for httplib.HTTPConnection.putheader() have claimed for quite a while

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.
This commit is contained in:
Brett Cannon 2008-11-15 22:40:44 +00:00
parent 031f3fb69a
commit e3d0bf740f
2 changed files with 6 additions and 6 deletions

View file

@ -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.