
python-checkins at python
Aug 22, 2006, 4:12 PM
Views: 96
Permalink
|
|
r51496 - sandbox/trunk/Doc/functional.rst
|
|
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``. _______________________________________________ Python-checkins mailing list Python-checkins[at]python.org http://mail.python.org/mailman/listinfo/python-checkins
|