asyncio.Task.current_task()

classmethod current_task(loop=None) Return the currently running task in an event loop or None.

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

coroutine get() Remove and return an item from the queue. If queue is empty, wait until an item is available.

2016-10-07 17:26:55
asyncio.StreamReader.readuntil()

coroutine readuntil(separator=b'n') Read data from the stream until separator is found. On

2016-10-07 17:27:01
select.epoll()

select.epoll(sizehint=-1, flags=0) (Only supported on Linux 2.5.44 and newer.) Return an edge polling object, which can be used

2016-10-07 17:41:32
asyncio.asyncio.subprocess.Process.wait()

coroutine wait() Wait for child process to terminate. Set and return returncode attribute. This

2016-10-07 17:26:39
asyncio.AbstractEventLoop.create_server()

coroutine AbstractEventLoop.create_server(protocol_factory, host=None, port=None, *, family=socket.AF_UNSPEC, flags=socket.AI_PASSIVE, sock=None, backlog=100, ssl=None

2016-10-07 17:26:29
asyncio.DatagramProtocol.datagram_received()

DatagramProtocol.datagram_received(data, addr) Called when a datagram is received. data is a bytes object containing

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

coroutine asyncio.create_subprocess_exec(*args, stdin=None, stdout=None, stderr=None, loop=None, limit=None, **kwds) Create

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

asyncio.run_coroutine_threadsafe(coro, loop) Submit a coroutine object to a given event loop.

2016-10-07 17:26:57
asyncio.AbstractEventLoop.create_future()

AbstractEventLoop.create_future() Create an

2016-10-07 17:26:29