Message101833
| 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:48 | jaraco | set | recipients:
+ jaraco, georg.brandl |
| 2010年03月27日 18:20:48 | jaraco | set | messageid: <1269714048.68.0.587279851175.issue8245@psf.upfronthosting.co.za> |
| 2010年03月27日 18:20:46 | jaraco | link | issue8245 messages |
| 2010年03月27日 18:20:46 | jaraco | create |
|