[Python-checkins] r57131 - python/trunk/Doc/tutorial/stdlib.rst

georg.brandl python-checkins at python.org
Fri Aug 17 07:52:50 CEST 2007


Author: georg.brandl
Date: Fri Aug 17 07:52:24 2007
New Revision: 57131

Modified:
   python/trunk/Doc/tutorial/stdlib.rst
Log:
Fix problem reported by Andre Roberge.


Modified: python/trunk/Doc/tutorial/stdlib.rst
==============================================================================
--- python/trunk/Doc/tutorial/stdlib.rst	(original)
+++ python/trunk/Doc/tutorial/stdlib.rst	Fri Aug 17 07:52:24 2007
@@ -158,11 +158,11 @@
    >>> import smtplib
    >>> server = smtplib.SMTP('localhost')
    >>> server.sendmail('soothsayer at example.org', 'jcaesar at example.org',
-   """To: jcaesar at example.org
-   From: soothsayer at example.org
-
-   Beware the Ides of March.
-   """)
+   ... """To: jcaesar at example.org
+   ... From: soothsayer at example.org
+   ...
+   ... Beware the Ides of March.
+   ... """)
    >>> server.quit()
 
 


More information about the Python-checkins mailing list