diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2006-11-07 20:39:58 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2006-11-07 20:39:58 (GMT) |
commit | cf1e760d3e91977f64336890d3dd0aa898b7fa25 (patch) | |
tree | 1243ea615a93ca4aef6f8f209e02b07eaa18401b /Doc | |
parent | 27021f1cb8e0c8c60a315a101a364bd6a09ff2e7 (diff) | |
download | cpython-cf1e760d3e91977f64336890d3dd0aa898b7fa25.zip cpython-cf1e760d3e91977f64336890d3dd0aa898b7fa25.tar.gz cpython-cf1e760d3e91977f64336890d3dd0aa898b7fa25.tar.bz2 |
Add missing word
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/whatsnew25.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index 33b7c0c..9affb7f 100644 --- a/Doc/whatsnew/whatsnew25.tex +++ b/Doc/whatsnew/whatsnew25.tex @@ -540,7 +540,7 @@ Traceback (most recent call last): StopIteration \end{verbatim} -\keyword{yield} will usually return \constant{None}, you +\keyword{yield} will usually return \constant{None}, so 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 to resume your generator function. |