From ee354b1e96a75f7485eb9c4612404acbf9f9b2d7 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 17 Aug 2007 05:52:24 +0000 Subject: Fix problem reported by Andre Roberge. --- Doc/tutorial/stdlib.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index f5d7146..8ff6012 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() -- cgit v0.12