decimal.Context.logical_or()

logical_or(x, y) Applies the logical operation or between each operand’s digits.

configparser.RawConfigParser.add_section()

add_section(section) Add a section named section to the instance. If a section by the given name already exists, DuplicateSectionError is raised. If the default section name is passed, ValueError is raised. Type of section is not checked which lets users create non-string named sections. This behaviour is unsupported and may cause internal errors.

xml.dom.Node.replaceChild()

Node.replaceChild(newChild, oldChild) Replace an existing node with a new node. It must be the case that oldChild is a child of this node; if not, ValueError is raised.

str.upper()

str.upper() Return a copy of the string with all the cased characters [4] converted to uppercase. Note that str.upper().isupper() might be False if s contains uncased characters or if the Unicode category of the resulting character(s) is not “Lu” (Letter, uppercase), but e.g. “Lt” (Letter, titlecase). The uppercasing algorithm used is described in section 3.13 of the Unicode Standard.

gc.get_objects()

gc.get_objects() Returns a list of all objects tracked by the collector, excluding the list returned.

ftplib.FTP.getwelcome()

FTP.getwelcome() Return the welcome message sent by the server in reply to the initial connection. (This message sometimes contains disclaimers or help information that may be relevant to the user.)

math.nan

math.nan A floating-point “not a number” (NaN) value. Equivalent to the output of float('nan'). New in version 3.5.

imaplib.IMAP4.recent()

IMAP4.recent() Prompt server for an update. Returned data is None if no new messages, else value of RECENT response.

pipes.Template.append()

Template.append(cmd, kind) Append a new action at the end. The cmd variable must be a valid bourne shell command. The kind variable consists of two letters. The first letter can be either of '-' (which means the command reads its standard input), 'f' (which means the commands reads a given file on the command line) or '.' (which means the commands reads no input, and hence must be first.) Similarly, the second letter can be either of '-' (which means the command writes to standard output), '

importlib.machinery.SourcelessFileLoader.path

path The path to the bytecode file.