Hi Kristjan, futures looks fine to me. Reading the code, there's only one minor thing in futures.wait():
These lines are unused: line 327: do_wait = not done line 335: if not not_done: line 336: do_wait = False #if not done is empty line 343: do_wait = not_done Given: line 348: do_wait = True Other than that, there's a sense that you should merge in the 3.3 futures support into the Stackless 2.7+ and stacklesslib should be monkeypatching it. Cheers, Richard. _______________________________________________ Stackless mailing list [email protected] http://www.stackless.com/mailman/listinfo/stackless
