Google Code Exporter
Google Code Exporter
``` 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....
``` 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...
``` 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
``` 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...
``` Hi, While working on a fix to issue #106, I realized that no unit test uses the selector classes of the selectors module. Only mocks are used. It would...
``` There are no isinstance checks for protocols and the transport implementation classes don't subclass their abstract counterparts. Perhaps we should have some of these? ``` Original issue reported on...
``` In selector_events::SelectorTransport there's an undocumented but public class variable max_size that determines how large a buffer to pass to recv(). This shouldn't be public. ``` Original issue reported on...
``` This is a feature request, not a bug. Thread names are a common logging aide in Python and other mainstream languages. Since a particular Tulip event loop is inherently...
``` There are a couple of XXX comments in the SSL socket transport that deserve more attention; more so now I've implemented pause()/resume(). See this thread: https://groups.google.com/forum/#!topic/python-tulip/1ih4FKvdUuI ``` Original issue...
``` There was some discussion about UDP error handling, and why it's currently wrong. See https://groups.google.com/forum/#!searchin/python-tulip/udp/python-tulip/LeVWGLe -a_k/MMIyZi-oWRkJ for details. ``` Original issue reported on code.google.com by `[email protected]` on 30 Sep...