email.headerregistry.ParameterizedMIMEHeader.params

params A dictionary mapping parameter names to parameter values.

asyncio.AbstractEventLoop.close()

AbstractEventLoop.close() Close the event loop. The loop must not be running. Pending callbacks will be lost. This clears the queues and shuts down the executor, but does not wait for the executor to finish. This is idempotent and irreversible. No other methods should be called after this one.

winreg.FlushKey()

winreg.FlushKey(key) Writes all the attributes of a key to the registry. key is an already open key, or one of the predefined HKEY_* constants. It is not necessary to call FlushKey() to change a key. Registry changes are flushed to disk by the registry using its lazy flusher. Registry changes are also flushed to disk at system shutdown. Unlike CloseKey(), the FlushKey() method returns only when all the data has been written to the registry. An application should only call FlushKey() if it re

os.getsid()

os.getsid(pid) Call the system call getsid(). See the Unix manual for the semantics. Availability: Unix.

tkinter.ttk.Notebook.identify()

identify(x, y) Returns the name of the tab element at position x, y, or the empty string if none.

sys.__displayhook__

sys.__displayhook__ sys.__excepthook__ These objects contain the original values of displayhook and excepthook at the start of the program. They are saved so that displayhook and excepthook can be restored in case they happen to get replaced with broken objects.

imaplib.IMAP4.delete()

IMAP4.delete(mailbox) Delete old mailbox named mailbox.

curses.is_term_resized()

curses.is_term_resized(nlines, ncols) Return True if resize_term() would modify the window structure, False otherwise.

socket.socket.set_inheritable()

socket.set_inheritable(inheritable) Set the inheritable flag of the socket’s file descriptor or socket’s handle. New in version 3.4.

winreg.ConnectRegistry()

winreg.ConnectRegistry(computer_name, key) Establishes a connection to a predefined registry handle on another computer, and returns a handle object. computer_name is the name of the remote computer, of the form r"\\computername". If None, the local computer is used. key is the predefined handle to connect to. The return value is the handle of the opened key. If the function fails, an OSError exception is raised. Changed in version 3.3: See above.