[Python-checkins] python/dist/src/Doc/tut tut.tex,1.232,1.233

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Thu Jun 3 10:13:18 EDT 2004


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

Modified Files:
	tut.tex 
Log Message:
Fix typo:  the-->they

Index: tut.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tut/tut.tex,v
retrieving revision 1.232
retrieving revision 1.233
diff -C2 -d -r1.232 -r1.233
*** tut.tex	31 May 2004 22:53:25 -0000	1.232
--- tut.tex	3 Jun 2004 14:13:04 -0000	1.233
***************
*** 4403,4410 ****
  
  Some simple generators can be coded succinctly as expressions using a syntax
! like list comprehensions but with parentheses instead of brackets.  These
  expressions are designed for situations where the generator is used right
  away by an enclosing function.  Generator expressions are more compact but
! less versatile than full generator definitions and the tend to be more memory
  friendly than equivalent list comprehensions.
  
--- 4403,4410 ----
  
  Some simple generators can be coded succinctly as expressions using a syntax
! similar to list comprehensions but with parentheses instead of brackets.  These
  expressions are designed for situations where the generator is used right
  away by an enclosing function.  Generator expressions are more compact but
! less versatile than full generator definitions and they tend to be more memory
  friendly than equivalent list comprehensions.
  




More information about the Python-checkins mailing list