ctypes.byref()

ctypes.byref(obj[, offset]) Returns a light-weight pointer to obj, which must be an instance of a ctypes type. offset defaults to zero, and must be an integer that will be added to the internal pointer value. byref(obj, offset) corresponds to this C code: (((char *)&obj) + offset) The returned object can only be used as a foreign function call parameter. It behaves similar to pointer(obj), but the construction is a lot faster.

asyncio.asyncio.subprocess.Process.terminate()

terminate() Stop the child. On Posix OSs the method sends signal.SIGTERM to the child. On Windows the Win32 API function TerminateProcess() is called to stop the child.

bdb.Bdb.set_break()

set_break(filename, lineno, temporary=0, cond, funcname) Set a new breakpoint. If the lineno line doesn’t exist for the filename passed as argument, return an error message. The filename should be in canonical form, as described in the canonic() method.

tkinter.ttk.Combobox.set()

set(value) Sets the value of the combobox to value.

subprocess.STARTUPINFO.hStdInput

hStdInput If dwFlags specifies STARTF_USESTDHANDLES, this attribute is the standard input handle for the process. If STARTF_USESTDHANDLES is not specified, the default for standard input is the keyboard buffer.

select.epoll.modify()

epoll.modify(fd, eventmask) Modify a registered file descriptor.

email.message.Message.get_boundary()

get_boundary(failobj=None) Return the value of the boundary parameter of the Content-Type header of the message, or failobj if either the header is missing, or has no boundary parameter. The returned string will always be unquoted as per email.utils.unquote().

spwd.getspall()

spwd.getspall() Return a list of all available shadow password database entries, in arbitrary order.

urllib.request.FTPHandler

class urllib.request.FTPHandler Open FTP URLs.

ctypes.Structure._pack_

_pack_ An optional small integer that allows overriding the alignment of structure fields in the instance. _pack_ must already be defined when _fields_ is assigned, otherwise it will have no effect.