asyncio.AbstractEventLoop.is_closed()

AbstractEventLoop.is_closed() Returns True if the event loop was closed.

2016-10-07 17:26:31
asyncio.StreamReader.read()

coroutine read(n=-1) Read up to n bytes. If n is not provided, or set to -1, read until EOF and

2016-10-07 17:27:01
asyncio.AbstractEventLoop.create_connection()

coroutine AbstractEventLoop.create_connection(protocol_factory, host=None, port=None, *, ssl=None, family=0, proto=0, flags=0, sock=None, local_addr=None, server_hostname=None)

2016-10-07 17:26:28
asyncio.LimitOverrunError

exception asyncio.LimitOverrunError Reached the buffer limit while looking for a separator.

2016-10-07 17:26:52
asyncio.WriteTransport.get_write_buffer_limits()

get_write_buffer_limits() Get the high- and low-water limits for write flow control. Return a tuple (low

2016-10-07 17:27:07
selectors.DevpollSelector.fileno()

fileno() This returns the file descriptor used by the underlying

2016-10-07 17:41:39
asyncio.SubprocessProtocol.pipe_data_received()

SubprocessProtocol.pipe_data_received(fd, data) Called when the child process writes data into its stdout or stderr pipe. fd

2016-10-07 17:27:04
asyncio.Future.set_exception()

set_exception(exception) Mark the future done and set an exception. If the future is already

2016-10-07 17:26:49
asyncio.Future.add_done_callback()

add_done_callback(fn) Add a callback to be run when the future becomes done. The callback is

2016-10-07 17:26:48
asyncio.AbstractEventLoop.call_exception_handler()

AbstractEventLoop.call_exception_handler(context) Call the current event loop exception handler.

2016-10-07 17:26:26