asyncio_slow: run_until_complete() should not schedule anyhing.

Everything should be scheduled either already, or async() does this.
pull/11/head
Paul Sokolovsky 2014-05-02 00:22:36 +03:00
rodzic 4a3a4927c4
commit 8d1ae59f3a
1 zmienionych plików z 0 dodań i 1 usunięć

Wyświetl plik

@ -43,7 +43,6 @@ class EventLoop:
t = async(coro)
t.add_done_callback(_cb)
self.call_soon(t)
try:
self.run_forever()
except DoneException: