[svn r37646] Wording, and missing attribute in the greenlet documentation.

--HG--
branch : trunk
This commit is contained in:
arigo 2007-01-31 00:29:45 +01:00
parent dcafd4cd60
commit 89a4750535
1 changed files with 4 additions and 1 deletions

View File

@ -229,7 +229,7 @@ Dying greenlet
sent to its parent. If ``run()`` terminates with an exception, the sent to its parent. If ``run()`` terminates with an exception, the
exception is propagated to its parent (unless it is a exception is propagated to its parent (unless it is a
``greenlet.GreenletExit`` exception, in which case the exception ``greenlet.GreenletExit`` exception, in which case the exception
object itself is sent to the parent). object is caught and *returned* to the parent).
Apart from the cases described above, the target greenlet normally Apart from the cases described above, the target greenlet normally
receives the object as the return value of the call to ``switch()`` in receives the object as the return value of the call to ``switch()`` in
@ -263,6 +263,9 @@ Methods and attributes of greenlets
``g.gr_frame`` ``g.gr_frame``
The current top frame, or None. The current top frame, or None.
``g.dead``
True if ``g`` is dead (i.e. it finished its execution).
``bool(g)`` ``bool(g)``
True if ``g`` is active, False if it is dead or not yet started. True if ``g`` is active, False if it is dead or not yet started.