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 zanella
Recipients facundobatista, giampaolo.rodola, gregory.p.smith, zanella
Date 2008-02-23.20:04:15
SpamBayes Score 0.17669736
Marked as misclassified No
Message-id <1203797056.49.0.351559306304.issue2143@psf.upfronthosting.co.za>
In-reply-to
Content
As of 2.6 the smtplib uses the ssl module, until 2.5 it uses _ssl, I
*think* that this issue would bring an Exception on 2.5 while on 2.6
would return a zero length string:
"""
def read(self, len=1024):

        """Read up to LEN bytes and return them.
        Return zero-length string on EOF."""

        return self._sslobj.read(len)
"""

wich would fulfill the "if not chr:"
History
Date User Action Args
2008-02-23 20:04:16zanellasetspambayes_score: 0.176697 -> 0.17669736
recipients: + zanella, facundobatista, gregory.p.smith, giampaolo.rodola
2008-02-23 20:04:16zanellasetspambayes_score: 0.176697 -> 0.176697
messageid: <1203797056.49.0.351559306304.issue2143@psf.upfronthosting.co.za>
2008-02-23 20:04:15zanellalinkissue2143 messages
2008-02-23 20:04:15zanellacreate