asyncio.SubprocessProtocol.process_exited()

SubprocessProtocol.process_exited() Called when the child process has exited.

multiprocessing.managers.SyncManager.Event()

Event() Create a shared threading.Event object and return a proxy for it.

os.environb

os.environb Bytes version of environ: a mapping object representing the environment as byte strings. environ and environb are synchronized (modify environb updates environ, and vice versa). environb is only available if supports_bytes_environ is True. New in version 3.2.

http.server.BaseHTTPRequestHandler.wfile

wfile Contains the output stream for writing a response back to the client. Proper adherence to the HTTP protocol must be used when writing to this stream.

select.epoll.register()

epoll.register(fd[, eventmask]) Register a fd descriptor with the epoll object.

asyncio.set_event_loop()

asyncio.set_event_loop(loop) Equivalent to calling get_event_loop_policy().set_event_loop(loop).

select.kevent.udata

kevent.udata User defined value.

asyncio.DatagramTransport.sendto()

DatagramTransport.sendto(data, addr=None) Send the data bytes to the remote peer given by addr (a transport-dependent target address). If addr is None, the data is sent to the target address given on transport creation. This method does not block; it buffers the data and arranges for it to be sent out asynchronously.

mailbox.MMDFMessage.add_flag()

add_flag(flag) Set the flag(s) specified by flag without changing other flags. To add more than one flag at a time, flag may be a string of more than one character.

os.DirEntry

class os.DirEntry Object yielded by scandir() to expose the file path and other file attributes of a directory entry. scandir() will provide as much of this information as possible without making additional system calls. When a stat() or lstat() system call is made, the DirEntry object will cache the result. DirEntry instances are not intended to be stored in long-lived data structures; if you know the file metadata has changed or if a long time has elapsed since calling scandir(), call os.s