[Python-checkins] r51496 - sandbox/trunk/Doc/functional.rst
andrew.kuchling
python-checkins at python.org
Wed Aug 23 01:12:42 CEST 2006
Author: andrew.kuchling
Date: Wed Aug 23 01:12:41 2006
New Revision: 51496
Modified:
sandbox/trunk/Doc/functional.rst
Log:
Typo fix
Modified: sandbox/trunk/Doc/functional.rst
==============================================================================
--- sandbox/trunk/Doc/functional.rst (original)
+++ sandbox/trunk/Doc/functional.rst Wed Aug 23 01:12:41 2006
@@ -579,7 +579,7 @@
+ 12``.)
Values are sent into a generator by calling its
-``send(value})`` method. This method resumes the
+``send(value)`` method. This method resumes the
generator's code and the ``yield`` expression returns the specified
value. If the regular ``next()`` method is called, the
``yield`` returns ``None``.
More information about the Python-checkins
mailing list