Package twisted :: Package flow :: Module wrap :: Class _Iterable
[frames | no frames]

Class _Iterable

Instruction --+    
              |    
          Stage --+
                  |
                 _Iterable


Wrapper for iterable objects, pass in a next() function

This wraps functions (or bound methods). Execution starts with the initial function. If the return value is a Stage, then control passes on to that stage for the next round of execution. If the return value is Cooperate, then the chain of Stages is put on hold, and this return value travels all the way up the call stack so that the underlying mechanism can sleep, or perform other tasks, etc. All other non-Instruction return values, Failure objects included, are passed back to the previous stage via self.result

All exceptions signal the end of the Stage. StopIteration means to stop without providing a result, while all other exceptions provide a Failure self.result followed by stoppage.
Method Summary
  __init__(self, iterable, *trap)
  _yield(self)
executed during a yield statement
    Inherited from Stage
  __iter__(self)
  next(self)
return current result

Method Details

_yield(self)

executed during a yield statement
Overrides:
twisted.flow.base.Stage._yield

Generated by Epydoc 2.0 on Sat May 15 20:08:02 2004 http://epydoc.sf.net