Follow official recommendation for domain names in examples.

This commit is contained in:
Raymond Hettinger 2004-05-25 16:08:28 +00:00
parent 79cddc56b3
commit a8aebcedf9
1 changed files with 3 additions and 3 deletions

View File

@ -4599,9 +4599,9 @@ for sending mail:
>>> import smtplib
>>> server = smtplib.SMTP('localhost')
>>> server.sendmail('soothsayer@tmp.org', 'jceasar@tmp.org',
"""To: jceasar@tmp.org
From: soothsayer@tmp.org
>>> server.sendmail('soothsayer@example.org', 'jceasar@example.org',
"""To: jceasar@example.org
From: soothsayer@example.org
Beware the Ides of March.
""")