[Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex,1.48,1.49

Barry Warsaw bwarsaw@users.sourceforge.net
Mon, 15 Jan 2001 12:51:42 -0800


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

Modified Files:
	libstdtypes.tex 
Log Message:
effbot caught a typo!


Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -r1.48 -r1.49
*** libstdtypes.tex	2001/01/15 20:28:50	1.48
--- libstdtypes.tex	2001/01/15 20:51:40	1.49
***************
*** 955,963 ****
  c = C()
  d = C()
! c.meth.whoami = 'my name is c'
! d.meth.whoami = 'my name is d'
  \end{verbatim}
  
! If bound method attribute setting was allowed, \code{c.meth.whoami}
  would return ``my name is d''.
  
--- 955,963 ----
  c = C()
  d = C()
! c.method.whoami = 'my name is c'
! d.method.whoami = 'my name is d'
  \end{verbatim}
  
! If bound method attribute setting was allowed, \code{c.method.whoami}
  would return ``my name is d''.