| Trees | Indices | Help |
|
|---|
|
|
|
|||
| ShortCircuit | |||
|
Driver Walk an iterable that returns a deferred. |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
__doc__ = '''Driver
|
|||
__version__ = "$Revision$" [11:-2]
|
|||
|
|||
Typical use of Driver class:
def walk(driver):
yield thing1()
a = driver.next()
print "Thing 1 is",
yield thing2()
b = driver.next()
print "Thing 2 is",
driver.finish(a + b)
drive(walk)
|
|
|||
__doc__
|
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0beta1 on Mon Oct 19 14:41:38 2009 | http://epydoc.sourceforge.net |