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

``` ProcatorEventLoop doesn't support UDP right now. I'm working on a patch. I need to implement WSARecvFrom in the _overlapped module for example. ``` Original issue reported on code.google.com by...

auto-migrated
Priority-Medium
Type-Defect

``` for acceptance testing protocol clientserver setups it tends to be really helpful to line them up with transports in a single process, so one can operate on all involved...

auto-migrated
Priority-Medium
Type-Defect

``` These are the tulip/asyncio changes to allow for non-blocking subprocess.Popen() functionality from http://bugs.python.org/issue1191964. Technically speaking, this patch does not actually need to be applied. It primarily offers a first...

auto-migrated
Priority-Medium
Type-Defect

``` Hi, I tried the crawl.py example, and I noticed that it solves the host for each connection. For example, on my PC the script calls getaddrinfo() 160 times per...

auto-migrated
Priority-Medium
Type-Defect

``` Hi, While trying to change how Trollius store tracebacks in Future.set_exception(), I found two bugs: * _TracebackLogger object is never deleted if its activate() method is not called. It...

auto-migrated
Priority-Medium
Type-Defect

``` Hi, I just fixed an obvious bug in _pipe_closed(): http://hg.python.org/cpython/rev/c412243b9d61 I don't understand why it was not noticed by the test suite. Maybe we need more tests? Or maybe...

auto-migrated
Priority-Medium
Type-Defect

``` Oh, I broke sock_connect() with IPv6 address recently (when I address a check to ensure that the addres is resolved) and it was not noticed by the test suite....

auto-migrated
Priority-Medium
Type-Defect

``` create_unix_server() and create_unix_connection() should only accept UNIX sockets create_server() and create_connection() should only accept AF_INET and AF_INET6 sockets. Link to code review: http://codereview.appspot.com/65180044 ``` Original issue reported on code.google.com...

auto-migrated
Priority-Medium
Type-Defect

``` Should we implement a sendfile (http://docs.python.org/3/library/os.html#os.sendfile) support in asyncio? ``` Original issue reported on code.google.com by `[email protected]` on 19 Feb 2014 at 1:33

auto-migrated
Priority-Medium
Type-Enhancement

``` I've spent a fair amount of time twice today debugging issues with the simulated time as implemented by asyncio.test_util.TestLoop, trying to modify the generator passed in to the constructor...

auto-migrated
Priority-Medium
Type-Defect