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 acreature
Recipients
Date 2007-08-12.01:32:54
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
It seems that a fix to this issue is to change line 525 to add "or line == ''" on httplib.py in Python 2.4.4:

# read and discard trailer up to the CRLF terminator
### note: we shouldn't have any trailers!
    while True:
        line = self.fp.readline()
        if line == '\r\n' or line == '':
            break

I'm told that this is found on line 574 on Python 2.5.
History
Date User Action Args
2007-08-23 14:59:10adminlinkissue1772481 messages
2007-08-23 14:59:10admincreate