]> git.ipfire.org Git - thirdparty/tornado.git/commit
Allow the same future multiple times in `multi_future` 1412/head
authorAbhinav Gupta <abg@uber.com>
Tue, 7 Apr 2015 18:57:45 +0000 (11:57 -0700)
committerAbhinav Gupta <abg@uber.com>
Tue, 7 Apr 2015 18:57:45 +0000 (11:57 -0700)
commit3721737929376b384895ef39bc7859708fad1a19
treebdbb6bfad2896b02bd36fc6230900526a7624bcd
parent3e4a735f15d610c579e126fd81a428834aa44d7d
Allow the same future multiple times in `multi_future`

This prevents failures in cases like the following:

    f = <some future>
    yield [f, f]
tornado/gen.py
tornado/test/gen_test.py