diff options
author | Raymond Hettinger <python@rcn.com> | 2004-05-25 16:08:28 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-05-25 16:08:28 (GMT) |
commit | a8aebcedf94192c80d95ca3ce3501c8481f9e41b (patch) | |
tree | 40436f5359067b4f1b35f6eadd1e7936f46c9f82 /Doc/tut | |
parent | 79cddc56b30f45899154289fdf684a98a10e9e2c (diff) | |
download | cpython-a8aebcedf94192c80d95ca3ce3501c8481f9e41b.zip cpython-a8aebcedf94192c80d95ca3ce3501c8481f9e41b.tar.gz cpython-a8aebcedf94192c80d95ca3ce3501c8481f9e41b.tar.bz2 |
Follow official recommendation for domain names in examples.
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index c8c5afe..b635aef 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -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. """) |