summaryrefslogtreecommitdiff
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-02-28 07:21:42 +0000
committerAnthony Baxter <anthonybaxter@gmail.com>2006-02-28 07:21:42 +0000
commit9b182e99b3a29fcc94d733fff5fc023ed36e6c50 (patch)
treeb67cadb2387634f9e84f839beb242ed17d5ea453 /Doc/whatsnew
parent15ae4c7cfb82b143175868268527770141dc8878 (diff)
downloadcpython-9b182e99b3a29fcc94d733fff5fc023ed36e6c50.tar.gz
XXX something for amk's attention
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/whatsnew25.tex1
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex
index ae0be2fd2b..f40d583bc2 100644
--- a/Doc/whatsnew/whatsnew25.tex
+++ b/Doc/whatsnew/whatsnew25.tex
@@ -156,6 +156,7 @@ needed. The exact rules are that a \keyword{yield}-expression must
always be parenthesized except when it occurs at the top-level
expression on the right-hand side of an assignment, meaning
you can to write \code{val = yield i} but \code{val = (yield i) + 12}.
+% XXX ending of last para makes no sense
Values are sent into a generator by calling its
\method{send(\var{value})} method. The generator's code is then