[Python-checkins] CVS: python/dist/src/Doc/tut tut.tex,1.141,1.142

Fred L. Drake fdrake@users.sourceforge.net
Fri, 29 Jun 2001 10:51:00 -0700


Update of /cvsroot/python/python/dist/src/Doc/tut
In directory usw-pr-cvs1:/tmp/cvs-serv21536/tut

Modified Files:
	tut.tex 
Log Message:

Use the more conventional "self" as the name of the self parameter in an
example.  It actually confused a reader.


Index: tut.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tut/tut.tex,v
retrieving revision 1.141
retrieving revision 1.142
diff -C2 -r1.141 -r1.142
*** tut.tex	2001/06/20 21:37:34	1.141
--- tut.tex	2001/06/29 17:50:57	1.142
***************
*** 3430,3434 ****
      "A simple example class"
      i = 12345
!     def f(x):
          return 'hello world'
  \end{verbatim}
--- 3430,3434 ----
      "A simple example class"
      i = 12345
!     def f(self):
          return 'hello world'
  \end{verbatim}