Google Code Exporter
Google Code Exporter
starttls
``` Glyph and Antoine really want a API to upgrade an existing Transport/Protocol pair to SSL/TLS, without having to create a new protocol. ``` Original issue reported on code.google.com by...
``` Hi, I created a new "traceback" branch to enhance debug in asyncio. The idea is to provide the "head" of an error (traceback where the object was created), not...
``` I'm following some discussions about HTTP/2 and a new WSGI design (see web-sig) and one issue brought up (pretty randomly) is that async frameworks typically don't let you limit...
``` I just fixed the issue #180 which documents the Server.sockets attribute. AbstractServer has no sockets attribute nor constructor. Should we add a sockets attribute to AbstractServer? Here is a...
``` 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...
``` 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...
``` 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...
``` 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...
``` 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...
``` 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...