asyncio icon indicating copy to clipboard operation
asyncio copied to clipboard

asyncio historical repository

Results 87 asyncio issues
Sort by recently updated
recently updated
newest added

Fixes http://bugs.python.org/issue27585 Without the fix the unit test deadlock, I haven't managed to make it fail (using wait_for() seems to avoid the deadlock)

CLA signed

Is everything good here? http://stackoverflow.com/questions/42546099/python-asyncio-migrate-from-3-4-to-3-5 I met the problem while migrating my script from python 3.4 to 3.5 or 3.6+. It uses asyncio and works good on 3.4 python but...

I hope a question is acceptable here; I've googled and not found an answer. I want to connect to a remote Tor server listening on an SSL socket with asyncio....

Sometimes people do not realize issues in code until they spend a lot of time running it and then it run into rare code cases where it fails on. Sometimes...

During my training sessions I constantly forced to say: `ensure_future()` is used for creating new task by 99% of use cases. The name is not obvious but please remember this...

I have this code to interact with a websocket api using `async` and `websokets` python libraries: ``` #!/usr/bin/env python3 import sys, json import asyncio from websockets import connect class AsyncWebsocket():...

Path: what's new in 3.5 -- new feature pep 492 asyncio.gather Discription: asyncio eventloop will automatically call the gather Gathering_feature object did not passed to it; Doc like this: async...

From https://bugs.python.org/issue23242#msg284930 The following script is used to reproduce the bug: ```python import asyncio async def execute(): process = await asyncio.create_subprocess_exec( "timeout", "0.1", "cat", "/dev/urandom", stdout=asyncio.subprocess.PIPE) while True: data =...

What's our policy on raising exceptions in destructors? For example, this code: https://github.com/python/asyncio/blob/ab113e4f5c437c3a85abfb4be6cf6c22f6f68b9e/asyncio/base_subprocess.py#L131 can potentially throw if the event loop as been closed already (or for any unforeseen reason, really)....

If I set global event loop to None (`asyncio.set_event_loop(None)`) and explicitly pass everywhere event loop, `asyncio.create_subprocess_exec` with I/O redirection will hang. In following example `proc.communicate()` will never return: ```python import...