[Python-checkins] python/dist/src/Doc/tut tut.tex, 1.261.2.1, 1.261.2.2

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sat Jan 1 01:34:59 CET 2005


Update of /cvsroot/python/python/dist/src/Doc/tut
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5382/tut

Modified Files:
      Tag: release24-maint
	tut.tex 
Log Message:
SF Patch #1093896:  miscellaneous doc typos



Index: tut.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tut/tut.tex,v
retrieving revision 1.261.2.1
retrieving revision 1.261.2.2
diff -u -d -r1.261.2.1 -r1.261.2.2
--- tut.tex	2 Dec 2004 08:57:19 -0000	1.261.2.1
+++ tut.tex	1 Jan 2005 00:34:56 -0000	1.261.2.2
@@ -3553,9 +3553,10 @@
 __main__.MyError: 'oops!'
 \end{verbatim}
 
-In this example, the default \method{__init__} of \class{Exception} has
-been overriden.  The new behavior simply creates the \var{value} attribute.
-This replaces the default behavior of creating the \var{args} attribute.
+In this example, the default \method{__init__} of \class{Exception}
+has been overridden.  The new behavior simply creates the \var{value}
+attribute.  This replaces the default behavior of creating the
+\var{args} attribute.
 
 Exception classes can be defined which do anything any other class can
 do, but are usually kept simple, often only offering a number of
@@ -4636,7 +4637,7 @@
 
 >>> import smtplib
 >>> server = smtplib.SMTP('localhost')
->>> server.sendmail('soothsayer at example.org', 'jceasar at example.org',
+>>> server.sendmail('soothsayer at example.org', 'jcaesar at example.org',
 """To: jcaesar at example.org
 From: soothsayer at example.org
 



More information about the Python-checkins mailing list