diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-23 18:11:58 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-23 18:11:58 (GMT) |
commit | 9356e11223fb05536fd977dac3327ee7f6e388bd (patch) | |
tree | 7ca8c3ded9d0e2766f066d5c7f4b70a850d120fa /Doc | |
parent | d3f91908dd2c2ab79d16bfe235da34f2fc19c114 (diff) | |
download | cpython-9356e11223fb05536fd977dac3327ee7f6e388bd.zip cpython-9356e11223fb05536fd977dac3327ee7f6e388bd.tar.gz cpython-9356e11223fb05536fd977dac3327ee7f6e388bd.tar.bz2 |
SF Bug #1563963, add missing word and cleanup first sentance
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/whatsnew25.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index 2cbbf84..f978fab 100644 --- a/Doc/whatsnew/whatsnew25.tex +++ b/Doc/whatsnew/whatsnew25.tex @@ -540,10 +540,10 @@ Traceback (most recent call last): StopIteration \end{verbatim} -Because \keyword{yield} will often be returning \constant{None}, you +\keyword{yield} will usually return \constant{None}, you should always check for this case. Don't just use its value in expressions unless you're sure that the \method{send()} method -will be the only method used resume your generator function. +will be the only method used to resume your generator function. In addition to \method{send()}, there are two other new methods on generators: |