From: Neal Norwitz Date: Sat, 23 Sep 2006 18:10:12 +0000 (+0000) Subject: SF Bug #1563963, add missing word and cleanup first sentance X-Git-Tag: v2.5.1c1~377 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=af4e3ee3658d92e0012028d52956a53848782133;p=python SF Bug #1563963, add missing word and cleanup first sentance --- diff --git a/Doc/whatsnew/whatsnew25.tex b/Doc/whatsnew/whatsnew25.tex index e8a9ce6eea..33b7c0c2bd 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: