diff options
author | Fred Drake <fdrake@acm.org> | 2004-06-03 17:19:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-06-03 17:19:25 (GMT) |
commit | 22ec5c36395d675b5274e7800f68c87b50d22040 (patch) | |
tree | f5eeb8762d8270f86efb839ff8710ca4eafbb0cb /Doc | |
parent | 175d18840aafd51f47c8908cd9ba37fa4eaf473e (diff) | |
download | cpython-22ec5c36395d675b5274e7800f68c87b50d22040.zip cpython-22ec5c36395d675b5274e7800f68c87b50d22040.tar.gz cpython-22ec5c36395d675b5274e7800f68c87b50d22040.tar.bz2 |
if we must argue over the/they, we can just remove the unecessary word
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index fc9f573..b00eaea 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -4405,7 +4405,7 @@ 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 +less versatile than full generator definitions and tend to be more memory friendly than equivalent list comprehensions. Examples: |