Twisted Trial - Framework for Test

2009-01-14 Thread wladimir
Hi, Somebody have some tutorial or examples using Twisted Trial?? -- View this message in context: http://www.nabble.com/Twisted-Trial---Framework-for-Test-tp21456710p21456710.html Sent from the Python - python-list mailing list archive at Nabble.com. -- http://mail.python.org/mailman/listinf

Defer problem

2009-01-07 Thread wladimir
Hi, I have an problem. I want to fire one callback after n callbacks fired, but when i fire one callback all the chain will be executed. Example: def handle(x): print 'callback ' + str(x) def handle2(x): print 'after callbacks' d1 = defer.Deffered() d2 = defer.Deffered() d3 = def