From: Georg Brandl Date: Fri, 17 Aug 2007 05:52:24 +0000 (+0000) Subject: Fix problem reported by Andre Roberge. X-Git-Tag: v2.6a1~1490 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ee354b1e96a75f7485eb9c4612404acbf9f9b2d7;p=thirdparty%2FPython%2Fcpython.git Fix problem reported by Andre Roberge. --- diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index f5d7146a54d3..8ff6012fa22a 100644 --- a/Doc/tutorial/stdlib.rst +++ b/Doc/tutorial/stdlib.rst @@ -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()