diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-02-28 07:21:42 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-02-28 07:21:42 (GMT) |
commit | d615110949f552508a0dbccbe7d4c4d56e81b5d5 (patch) | |
tree | 077c3f0cdf797dddc7522611494fbfe512920be3 /Doc/whatsnew | |
parent | baf3eb241027455bb7825293957df4346f2393d7 (diff) | |
download | cpython-d615110949f552508a0dbccbe7d4c4d56e81b5d5.zip cpython-d615110949f552508a0dbccbe7d4c4d56e81b5d5.tar.gz cpython-d615110949f552508a0dbccbe7d4c4d56e81b5d5.tar.bz2 |
XXX something for amk's attention
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/whatsnew25.tex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index ae0be2f..f40d583 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 |