[Python-checkins] r51988 - python/branches/release25-maint/Doc/whatsnew/whatsnew25.tex

neal.norwitz python-checkins at python.org
Sat Sep 23 20:10:13 CEST 2006


Author: neal.norwitz
Date: Sat Sep 23 20:10:12 2006
New Revision: 51988

Modified:
   python/branches/release25-maint/Doc/whatsnew/whatsnew25.tex
Log:
SF Bug #1563963, add missing word and cleanup first sentance

Modified: python/branches/release25-maint/Doc/whatsnew/whatsnew25.tex
==============================================================================
--- python/branches/release25-maint/Doc/whatsnew/whatsnew25.tex	(original)
+++ python/branches/release25-maint/Doc/whatsnew/whatsnew25.tex	Sat Sep 23 20:10:12 2006
@@ -540,10 +540,10 @@
 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:


More information about the Python-checkins mailing list