AndreaCensi / compmake

Compmake is a non-obtrusive module that provides Makefile-like facilities (including parallel processing) for batch Python applications.
http://compmake.org/
Other
17 stars 6 forks source link

introduce "bless" decorator #54

Closed AndreaCensi closed 9 years ago

AndreaCensi commented 14 years ago

Instead of writing:

 res1 = comp(func1, param1)
 res2 = comp(func2, res1, param2)

We could be writing:

func1 = bless(func1)
func2 = bless(func2)
...
res1 = func1( param1)
res2 = func2(res1, param2)