This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author davidma
Recipients
Date 2007-03-15.00:58:36
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content

See the addheader method of the HTTPMessage class in httplib.py

    def addheader(self, key, value):
        """Add header for field key handling repeats."""
        prev = self.dict.get(key)
        if prev is None:
            self.dict[key] = value
        else:
            combined = ", ".join((prev, value))
            self.dict[key] = combined


also see the original tracker entry where this fix was first discussed & implemented

https://sourceforge.net/tracker/index.php?func=detail&aid=432621&group_id=5470&atid=105470




History
Date User Action Args
2007-08-23 14:51:57adminlinkissue1660009 messages
2007-08-23 14:51:57admincreate