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

In https://mail.python.org/pipermail/async-sig/2016-June/000033.html Ben Darnell asked for `asyncio.timeout()` removing. I understand the problem (hopefully). But the timeout context manager is very important. It's really user friendly. Also it produces very small...

This PR adds two new APIs: `asyncio.run()` and `asyncio.run_in_executor()`. Ideally, if possible, I'd like to have them in 3.6. If I have a green light on the idea, I'll update...

CLA signed

The following code produces a `RuntimeError` if the first `readline` operation times out: ``` python try: return await asyncio.wait_for(reader.readline(), 1.) except asyncio.TimeoutError: print('Timeout!') # await asyncio.sleep(0) return await reader.readline() ```...

in Windows, CTRL+C doesn't terminate this script: ``` python #!/usr/bin/env python import asyncio try: asyncio.get_event_loop().run_forever() except KeyboardInterrupt: asyncio.get_event_loop().stop() ``` also see #191

I have written a fairly widely used server, ElectrumX, with asyncio. This issue https://github.com/kyuupichan/electrumx/issues/94 is essentially about clients that connect to the SSL port and then do nothing during the...

Here's a traceback. Note that the error is in asyncio's own code. This is an outgoing SSL connection made with asyncio's loop.create_connection or socket.open_connection (I use both; I don't know...

This is very similar in root cause to issue #483 - SSL handshakes that have been initiated but not completed. This code in sslproto.py: if compat.PY34: def __del__(self): if not...

Current implementation of the asyncio Proactor event loop has an issue, when you stop a server it's cancel the futures of all other servers.

CLA signed

i think `pause_reading` should be no-op during closing or for closed transport. for aiohttp case parsing incoming data is separated from transport and it is not possible to control closing...

Re: https://groups.google.com/forum/?utm_source=digest&utm_medium=email#!topic/python-tulip/btGHbh5kUUM Tests pass. I sort of wish the pause and resume functions could elegantly live on the event loop and not on the Server object, but it seems to...

CLA not signed