asyncio.Handle.cancel()

cancel() Cancel the call. If the callback is already canceled or executed, this method has no effect.

2016-10-07 17:26:50
asyncio.create_subprocess_shell()

coroutine asyncio.create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, loop=None, limit=None, **kwds) Run the

2016-10-07 17:26:45
asyncio.BaseTransport.close()

close(self) Close the transport. If the transport has a buffer for outgoing data, buffered data will be flushed asynchronously

2016-10-07 17:26:42
select.poll.unregister()

poll.unregister(fd) Remove a file descriptor being tracked by a polling object. Just like the register() method

2016-10-07 17:41:37
asyncio.Future.remove_done_callback()

remove_done_callback(fn) Remove all instances of a callback from the “call when done” list. Returns

2016-10-07 17:26:49
asyncio.WriteTransport.writelines()

writelines(list_of_data) Write a list (or any iterable) of data bytes to the transport. This is functionally equivalent to calling

2016-10-07 17:27:07
asyncio.asyncio.subprocess.Process

class asyncio.subprocess.Process A subprocess created by the create_subprocess_exec() or the create_subp

2016-10-07 17:26:37
asyncio.BaseProtocol.connection_made()

BaseProtocol.connection_made(transport) Called when a connection is made. The transport

2016-10-07 17:26:40
asyncio.Event.wait()

coroutine wait() Block until the internal flag is true. If the internal flag is true on entry

2016-10-07 17:26:47
asyncio.AbstractEventLoop.get_debug()

AbstractEventLoop.get_debug() Get the debug mode (

2016-10-07 17:26:31