From: Raymond Hettinger Date: Tue, 25 May 2004 16:08:28 +0000 (+0000) Subject: Follow official recommendation for domain names in examples. X-Git-Tag: v2.4a1~344 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8aebcedf94192c80d95ca3ce3501c8481f9e41b;p=thirdparty%2FPython%2Fcpython.git Follow official recommendation for domain names in examples. --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index c8c5afee8e9e..b635aef4385c 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. """)