importlib.abc.PathEntryFinder.find_module()

find_module(fullname) A concrete implementation of Finder.find_module() which is equivalent to self.find_loader(fullname)[0]. Deprecated since version 3.4: Use find_spec() instead.

multiprocessing.pool.Pool.imap_unordered()

imap_unordered(func, iterable[, chunksize]) The same as imap() except that the ordering of the results from the returned iterator should be considered arbitrary. (Only when there is only one worker process is the order guaranteed to be “correct”.)

http.server.BaseHTTPRequestHandler.log_error()

log_error(...) Logs an error when a request cannot be fulfilled. By default, it passes the message to log_message(), so it takes the same arguments (format and additional values).

unittest.mock.Mock._get_child_mock()

_get_child_mock(**kw) Create the child mocks for attributes and return value. By default child mocks will be the same type as the parent. Subclasses of Mock may want to override this to customize the way child mocks are made. For non-callable mocks the callable variant will be used (rather than any custom subclass).

string.punctuation

string.punctuation String of ASCII characters which are considered punctuation characters in the C locale.

os.path.getsize()

os.path.getsize(path) Return the size, in bytes, of path. Raise OSError if the file does not exist or is inaccessible.

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.

xml.sax.xmlreader.InputSource.getPublicId()

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

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.