asyncio doc: rewrite the callback hello world to use call_soon() instead of a

direct call.
This commit is contained in:
Victor Stinner 2013-12-10 02:47:22 +01:00
parent b69d62dcac
commit dbd8950b28
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ Print ``Hello World`` every two seconds, using a callback::
loop.call_later(2, print_and_repeat, loop)
loop = asyncio.get_event_loop()
print_and_repeat(loop)
loop.call_soon(print_and_repeat, loop)
loop.run_forever()
.. seealso::