select.epoll.close()

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

imaplib.IMAP4.response()

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

delattr()

delattr(object, name) This is a relative of setattr(). The arguments are an object and a string. The string must be the name of one of the object’s attributes. The function deletes the named attribute, provided the object allows it. For example, delattr(x, 'foobar') is equivalent to del x.foobar.

xml.sax.xmlreader.InputSource.getPublicId()

InputSource.getPublicId() Returns the public identifier of this InputSource.

tarfile.TarInfo.gid

TarInfo.gid Group ID of the user who originally stored this member.

ctypes.c_wchar_p

class ctypes.c_wchar_p Represents the C wchar_t * datatype, which must be a pointer to a zero-terminated wide character string. The constructor accepts an integer address, or a string.

http.server.SimpleHTTPRequestHandler.extensions_map

extensions_map A dictionary mapping suffixes into MIME types. The default is signified by an empty string, and is considered to be application/octet-stream. The mapping is used case-insensitively, and so should contain only lower-cased keys.

multiprocessing.get_logger()

multiprocessing.get_logger() Returns the logger used by multiprocessing. If necessary, a new one will be created. When first created the logger has level logging.NOTSET and no default handler. Messages sent to this logger will not by default propagate to the root logger. Note that on Windows child processes will only inherit the level of the parent process’s logger – any other customization of the logger will not be inherited.

codecs.getwriter()

codecs.getwriter(encoding) Look up the codec for the given encoding and return its StreamWriter class or factory function. Raises a LookupError in case the encoding cannot be found.

reprlib.aRepr

reprlib.aRepr This is an instance of Repr which is used to provide the repr() function described below. Changing the attributes of this object will affect the size limits used by repr() and the Python debugger.