Re: Python Integrated Parallel Pipeline EnviRonment: PIPPER

2009-02-05 Thread Kyle
PIPPER doesn't yet have a very large user base, and is still in Alpha. So if there is enough demand, syntax changes would still be possible at this stage. Kyle > I'm not a big fan of comments that change semantics. Wouldn't a modified > 'with' statement look better? > > We have a couple of other

Re: Python Integrated Parallel Pipeline EnviRonment: PIPPER

2009-02-05 Thread Stefan Behnel
Kyle wrote: > def do_call(x,y): > print "Hello World", x, y, os.getpid() > > if __name__ == '__pipper_main__': > a_range = range( int(sys.argv[1]) ) > #pragma pipper_start > for a in a_range : > for b in a_range : > do_call(a,b) >