asyncore.dispatcher.connect()

connect(address) As with the normal socket object, address is a tuple with the first element the host to connect to, and the second the port number.

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.

code.InteractiveInterpreter.write()

InteractiveInterpreter.write(data) Write a string to the standard error stream (sys.stderr). Derived classes should override this to provide the appropriate output handling as needed.

memoryview.hex()

hex() Return a string object containing two hexadecimal digits for each byte in the buffer. >>> m = memoryview(b"abc") >>> m.hex() '616263' New in version 3.5.