Re: [Twisted-Python] deferred list behaviour

2009-12-15 Thread Nathan
On Tue, Dec 15, 2009 at 10:34 AM, wrote: > On 05:17 pm, nathan.sto...@gmail.com wrote: >>Are the results of a deferred list guaranteed to be in the same order >>as the list of deferreds that was given to it? >> >>i.e. if I pass [d1, d2, d3] to a deferred list and the results list in >>the call ba

Re: [Twisted-Python] deferred list behaviour

2009-12-15 Thread exarkun
On 05:17 pm, nathan.sto...@gmail.com wrote: >Are the results of a deferred list guaranteed to be in the same order >as the list of deferreds that was given to it? > >i.e. if I pass [d1, d2, d3] to a deferred list and the results list in >the call back has [(True, (something,)), (False, (something,)

[Twisted-Python] deferred list behaviour

2009-12-15 Thread Nathan
Are the results of a deferred list guaranteed to be in the same order as the list of deferreds that was given to it? i.e. if I pass [d1, d2, d3] to a deferred list and the results list in the call back has [(True, (something,)), (False, (something,)), (True, (something))] is it guaranteed that ite