datetime.datetime.dst()

datetime.dst() If tzinfo is None, returns None, else returns self.tzinfo.dst(self), and raises an exception if the latter doesn’t return None, or a timedelta object representing a whole number of minutes with magnitude less than one day.

curses.has_ic()

curses.has_ic() Return True if the terminal has insert- and delete-character capabilities. This function is included for historical reasons only, as all modern software terminal emulators have such capabilities.

operator.pos()

operator.pos(obj) operator.__pos__(obj) Return obj positive (+obj).

msilib.CAB.append()

append(full, file, logical) Add the file with the pathname full to the CAB file, under the name logical. If there is already a file named logical, a new file name is created. Return the index of the file in the CAB file, and the new name of the file inside the CAB file.

xml.dom.Node.nodeValue

Node.nodeValue This has a different meaning for each node type; see the DOM specification for details. The situation is similar to that with nodeName. The value is a string or None.

curses.version

curses.version A string representing the current version of the module. Also available as __version__.

curses.window.keypad()

window.keypad(yes) If yes is 1, escape sequences generated by some keys (keypad, function keys) will be interpreted by curses. If yes is 0, escape sequences will be left as is in the input stream.

gettext.NullTranslations.gettext()

gettext(message) If a fallback has been set, forward gettext() to the fallback. Otherwise, return the translated message. Overridden in derived classes.

traceback.TracebackException.from_exception()

classmethod from_exception(exc, *, limit=None, lookup_lines=True, capture_locals=False) Capture an exception for later rendering. limit, lookup_lines and capture_locals are as for the StackSummary class. Note that when locals are captured, they are also shown in the traceback.

operator.__and__()

operator.__and__(a, b) Return the bitwise and of a and b.