HomeSort by relevance Sort by last modified time
    Searched refs:smtp (Results 1 - 5 of 5) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_smtplib.py 65 smtp = smtplib.SMTP(HOST, self.port)
66 smtp.close()
70 smtp = smtplib.SMTP("%s:%s" % (HOST, self.port))
71 smtp.close()
75 smtp = smtplib.SMTP(HOST, self.port, local_hostname="testhost")
76 self.assertEqual(smtp.local_hostname, "testhost")
77 smtp.close(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_smtplib.py 65 smtp = smtplib.SMTP(HOST, self.port)
66 smtp.close()
70 smtp = smtplib.SMTP("%s:%s" % (HOST, self.port))
71 smtp.close()
75 smtp = smtplib.SMTP(HOST, self.port, local_hostname="testhost")
76 self.assertEqual(smtp.local_hostname, "testhost")
77 smtp.close(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
handlers.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
handlers.py     [all...]
  /external/chromium_org/chrome/test/functional/
test_utils.py 141 def SendMail(send_from, send_to, subject, text, smtp, file_to_send=None):
150 smtp: The smtp to use, as a string.
172 smtp_obj = smtplib.SMTP(smtp)

Completed in 66 milliseconds