Skip to content

Commit 55fc48c

Browse files
author
georg.brandl
committed
Fix problem reported by Andre Roberge.
git-svn-id: http://svn.python.org/projects/python/trunk@57131 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 51f4ccc commit 55fc48c

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Doc/tutorial/stdlib.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,11 @@ and :mod:`smtplib` for sending mail::
158158
>>> import smtplib
159159
>>> server = smtplib.SMTP('localhost')
160160
>>> server.sendmail('soothsayer@example.org', 'jcaesar@example.org',
161-
"""To: jcaesar@example.org
162-
From: soothsayer@example.org
163-
164-
Beware the Ides of March.
165-
""")
161+
... """To: jcaesar@example.org
162+
... From: soothsayer@example.org
163+
...
164+
... Beware the Ides of March.
165+
... """)
166166
>>> server.quit()
167167

168168

0 commit comments

Comments
 (0)