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 christian.heimes
Recipients airadier, christian.heimes
Date 2007-12-18.22:07:21
SpamBayes Score 0.0918761
Marked as misclassified No
Message-id <1198015641.77.0.456500158856.issue1627@psf.upfronthosting.co.za>
In-reply-to
Content
Your proposed fixed is not correct:

        length = self.msg.getheader("content-length")
        if length and not self.chunked:
            try:
                self.length = int(length)
            except ValueError:
                pass
        # patch
        if self.length < 0:
            self.length = None
History
Date User Action Args
2007-12-18 22:07:21christian.heimessetspambayes_score: 0.0918761 -> 0.0918761
recipients: + christian.heimes, airadier
2007-12-18 22:07:21christian.heimessetspambayes_score: 0.0918761 -> 0.0918761
messageid: <1198015641.77.0.456500158856.issue1627@psf.upfronthosting.co.za>
2007-12-18 22:07:21christian.heimeslinkissue1627 messages
2007-12-18 22:07:21christian.heimescreate