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 jaraco
Recipients georg.brandl, jaraco
Date 2010-03-27.18:20:45
SpamBayes Score 1.9472468e-06
Marked as misclassified No
Message-id <1269714048.68.0.587279851175.issue8245@psf.upfronthosting.co.za>
In-reply-to
Content
Documentation for Python 2.6.5 and 3.1.2 both describe using the smtplib as so:

    s = smtplib.SMTP()
    s.sendmail(me, [you], msg.as_string())
    s.quit()

However, this sample usage is incorrect and doesn't work in practice, because s.connect() is never called. If the reader copies the example code, he will get an error on the call to sendmail:

    smtplib.SMTPServerDisconnected: please run connect() first

The documentation should be updated to reflect the requisite s.connect() call (or to supply sample host/port parameters in the construction).

It appears that in the 2.3.5 docs, the .connect() call was there. I have not yet investigated why it was removed.
History
Date User Action Args
2010-03-27 18:20:48jaracosetrecipients: + jaraco, georg.brandl
2010-03-27 18:20:48jaracosetmessageid: <1269714048.68.0.587279851175.issue8245@psf.upfronthosting.co.za>
2010-03-27 18:20:46jaracolinkissue8245 messages
2010-03-27 18:20:46jaracocreate