Fix problem reported by Andre Roberge.

This commit is contained in:
Georg Brandl 2007-08-17 05:52:24 +00:00
parent 82955f6787
commit ee354b1e96
1 changed files with 5 additions and 5 deletions

View File

@ -158,11 +158,11 @@ and :mod:`smtplib` for sending mail::
>>> import smtplib
>>> server = smtplib.SMTP('localhost')
>>> server.sendmail('soothsayer@example.org', 'jcaesar@example.org',
"""To: jcaesar@example.org
From: soothsayer@example.org
Beware the Ides of March.
""")
... """To: jcaesar@example.org
... From: soothsayer@example.org
...
... Beware the Ides of March.
... """)
>>> server.quit()