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 Romuald
Recipients Romuald
Date 2018-01-26.15:34:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1516980850.17.0.467229070634.issue32680@psf.upfronthosting.co.za>
In-reply-to
Content
My use case:

try:
  s = SMTP('myhost')
  s.do_some_sending()
finaly:
  if s is not None and s.sock is not None:
    s.quit()

But I realize just now that in that case, if s was initialized correctly, its sock was inevitably set
History
Date User Action Args
2018-01-26 15:34:10Romualdsetrecipients: + Romuald
2018-01-26 15:34:10Romualdsetmessageid: <1516980850.17.0.467229070634.issue32680@psf.upfronthosting.co.za>
2018-01-26 15:34:10Romualdlinkissue32680 messages
2018-01-26 15:34:10Romualdcreate