Merging upstream version 3.0.25.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
8e41bc821f
commit
7159687519
26 changed files with 770 additions and 530 deletions
|
@ -19,7 +19,7 @@ loop = asyncio.get_event_loop()
|
|||
counter = [0]
|
||||
|
||||
|
||||
async def print_counter():
|
||||
async def print_counter() -> None:
|
||||
"""
|
||||
Coroutine that prints counters and saves it in a global variable.
|
||||
"""
|
||||
|
@ -29,7 +29,7 @@ async def print_counter():
|
|||
await asyncio.sleep(3)
|
||||
|
||||
|
||||
async def interactive_shell():
|
||||
async def interactive_shell() -> None:
|
||||
"""
|
||||
Coroutine that starts a Python REPL from which we can access the global
|
||||
counter variable.
|
||||
|
@ -44,13 +44,10 @@ async def interactive_shell():
|
|||
loop.stop()
|
||||
|
||||
|
||||
def main():
|
||||
asyncio.ensure_future(print_counter())
|
||||
asyncio.ensure_future(interactive_shell())
|
||||
|
||||
loop.run_forever()
|
||||
loop.close()
|
||||
async def main() -> None:
|
||||
asyncio.create_task(print_counter())
|
||||
await interactive_shell()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
asyncio.run(main())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue