[Python-checkins] CVS: python/dist/src/Doc/ref ref6.tex,1.38,1.39 ref7.tex,1.26,1.27

Fred L. Drake fdrake@users.sourceforge.net
Fri, 22 Jun 2001 23:06:54 -0700


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

Modified Files:
	ref6.tex ref7.tex 
Log Message:

Fix minor markup nits.


Index: ref6.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref6.tex,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -r1.38 -r1.39
*** ref6.tex	2001/06/23 05:27:20	1.38
--- ref6.tex	2001/06/23 06:06:52	1.39
***************
*** 658,662 ****
  a code object.  If it is a string, the string is parsed as a suite of
  Python statements which is then executed (unless a syntax error
! occurs).  If it is an open file, the file is parsed until EOF and
  executed.  If it is a code object, it is simply executed.
  
--- 658,662 ----
  a code object.  If it is a string, the string is parsed as a suite of
  Python statements which is then executed (unless a syntax error
! occurs).  If it is an open file, the file is parsed until \EOF{} and
  executed.  If it is a code object, it is simply executed.
  

Index: ref7.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref7.tex,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -r1.26 -r1.27
*** ref7.tex	2001/06/23 05:27:20	1.26
--- ref7.tex	2001/06/23 06:06:52	1.27
***************
*** 114,118 ****
  
  The \keyword{for} statement is used to iterate over the elements of a
! sequence (string, tuple or list):
  \obindex{sequence}
  
--- 114,118 ----
  
  The \keyword{for} statement is used to iterate over the elements of a
! sequence (such as a string, tuple or list) or other iterable object:
  \obindex{sequence}
  
***************
*** 353,360 ****
  dictionary receiving any excess keyword arguments, defaulting to a
  new empty dictionary.
- 
- 
- 
- 
  
  It is also possible to create anonymous functions (functions not bound
--- 353,356 ----