asyncio.BaseTransport.get_extra_info()

get_extra_info(name, default=None) Return optional transport information. name is a string representing the piece of

2016-10-07 17:26:43
selectors.BaseSelector

class selectors.BaseSelector A BaseSelector is used to wait for I/O event readiness on multiple file objects. It

2016-10-07 17:41:38
asyncio.AbstractEventLoop.close()

AbstractEventLoop.close() Close the event loop. The loop must not be running. Pending callbacks will be lost.

2016-10-07 17:26:27
asyncio.SelectorEventLoop

class asyncio.SelectorEventLoop Event loop based on the

2016-10-07 17:26:57
asyncio.ReadTransport.resume_reading()

resume_reading() Resume the receiving end. The protocol’s data_received() method will be called once again if some

2016-10-07 17:26:57
asyncio.StreamReaderProtocol

class asyncio.StreamReaderProtocol(stream_reader, client_connected_cb=None, loop=None) Trivial helper class to adapt between

2016-10-07 17:27:02
select.kqueue.fromfd()

kqueue.fromfd(fd) Create a kqueue object from a given file descriptor.

2016-10-07 17:41:36
asyncio.TimeoutError

exception asyncio.TimeoutError The operation exceeded the given deadline.

2016-10-07 17:27:05
asyncio.coroutine()

@asyncio.coroutine Decorator to mark generator-based coroutines. This enables the generator use yield from to call

2016-10-07 17:26:45
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