[issue4239] Email example should use SMTP.quit() rather than SMTP.close()

2009-04-29 Thread Jeroen Ruigrok van der Werven
Jeroen Ruigrok van der Werven added the comment: Not that I saw. Merged to py3k and 2.6. -- resolution: -> accepted status: open -> closed ___ Python tracker ___ __

[issue4239] Email example should use SMTP.quit() rather than SMTP.close()

2009-04-25 Thread Georg Brandl
Georg Brandl added the comment: I'm guessing there is no difference in functionality in 2.6 or 3.x. -- ___ Python tracker ___ ___ Pyth

[issue4239] Email example should use SMTP.quit() rather than SMTP.close()

2009-04-25 Thread Jeroen Ruigrok van der Werven
Changes by Jeroen Ruigrok van der Werven : -- priority: -> low stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-li

[issue4239] Email example should use SMTP.quit() rather than SMTP.close()

2009-04-25 Thread Jeroen Ruigrok van der Werven
Jeroen Ruigrok van der Werven added the comment: Thanks, committed in r71882. Georg, I guess this needs to be backported to 2.6 at least and we need to check what 3.x has. -- nosy: +asmodai ___ Python tracker

[issue4239] Email example should use SMTP.quit() rather than SMTP.close()

2008-10-29 Thread Matt Johnston
Matt Johnston <[EMAIL PROTECTED]> added the comment: Another problem with that example - the .connect() isn't required and causes the SMTP session to fail to send anything and time out. ___ Python tracker <[EMAIL PROTECTED]>

[issue4239] Email example should use SMTP.quit() rather than SMTP.close()

2008-10-29 Thread Matt Johnston
New submission from Matt Johnston <[EMAIL PROTECTED]>: The email module example has "s.close()", while the smtplib docs say to use .quit() The latter is probably correct? -- assignee: georg.brandl components: Documentation messages: 75354 nosy: georg.brandl, matt severity: normal status