Flow_Graph classes and Modules

Does anyone know where to find documentation for the Flow_Graph classes
and modules such as connect?

On Fri, Jul 07, 2006 at 10:05:08AM -0700, Quenton B. wrote:

Does anyone know where to find documentation for the Flow_Graph classes
and modules such as connect?

There’s not that much to them.

Have you read through the tutorials? (The one’s I sent links to
yesterday.)

Eric

On Fri, Jul 07, 2006 at 10:05:08AM -0700, Quenton B. wrote:

Does anyone know where to find documentation for the Flow_Graph classes
and modules such as connect?

def start (self):
    '''start graph, forking thread(s), return immediately'''

def stop (self):
    '''tells scheduler to stop and waits for it to happen'''

def wait (self):
    '''waits for scheduler to stop'''

def run (self):
    '''start graph, wait for completion'''

def connect (self, *points):
    '''connect requires two or more arguments that can be coerced to 

endpoints.
If more than two arguments are provided, they are connected
together successively.
‘’’