stat.S_ISDIR()

stat.S_ISDIR(mode) Return non-zero if the mode is from a directory.

curses.panel.Panel.below()

Panel.below() Returns the panel below the current panel.

tkinter.ttk.Style.theme_create()

theme_create(themename, parent=None, settings=None) Create a new theme. It is an error if themename already exists. If parent is specified, the new theme will inherit styles, elements and layouts from the parent theme. If settings are present they are expected to have the same syntax used for theme_settings().

curses.flash()

curses.flash() Flash the screen. That is, change it to reverse-video and then change it back in a short interval. Some people prefer such as ‘visible bell’ to the audible attention signal produced by beep().

decimal.Decimal.next_toward()

next_toward(other, context=None) If the two operands are unequal, return the number closest to the first operand in the direction of the second operand. If both operands are numerically equal, return a copy of the first operand with the sign set to be the same as the sign of the second operand.

datetime.datetime.isocalendar()

datetime.isocalendar() Return a 3-tuple, (ISO year, ISO week number, ISO weekday). The same as self.date().isocalendar().

csv.Dialect.skipinitialspace

Dialect.skipinitialspace When True, whitespace immediately following the delimiter is ignored. The default is False.

imaplib.IMAP4.response()

IMAP4.response(code) Return data for response code if received, or None. Returns the given code, instead of the usual type.

select.epoll.close()

epoll.close() Close the control file descriptor of the epoll object.

ctypes.py_object

class ctypes.py_object Represents the C PyObject * datatype. Calling this without an argument creates a NULL PyObject * pointer.