Spelling corrections. Submitted to python-dev by python@mrabarnett.plus.com

This commit is contained in:
Brian Curtin 2014-02-08 18:36:14 -06:00
parent 87bf2772be
commit a1afeec9aa
4 changed files with 7 additions and 7 deletions

View file

@ -111,7 +111,7 @@ Example chaining coroutines::
loop.close()
``compute()`` is chained to ``print_sum()``: ``print_sum()`` coroutine waits
until ``compute()`` is completed before returing its result.
until ``compute()`` is completed before returning its result.
Sequence diagram of the example:
@ -315,7 +315,7 @@ Task
The frames are always ordered from oldest to newest.
The optional limit gives the maximum nummber of frames to return; by
The optional limit gives the maximum number of frames to return; by
default all available frames are returned. Its meaning differs depending
on whether a stack or a traceback is returned: the newest frames of a
stack are returned, but the oldest frames of a traceback are returned.