http.cookies.Morsel.copy()

Morsel.copy(value) Return a shallow copy of the Morsel object. Changed in version 3.5: return a Morsel object instead of a dict.

xml.etree.ElementTree.TreeBuilder.end()

end(tag) Closes the current element. tag is the element name. Returns the closed element.

str.partition()

str.partition(sep) Split the string at the first occurrence of sep, and return a 3-tuple containing the part before the separator, the separator itself, and the part after the separator. If the separator is not found, return a 3-tuple containing the string itself, followed by two empty strings.

timeit.default_timer()

timeit.default_timer() The default timer, which is always time.perf_counter(). Changed in version 3.3: time.perf_counter() is now the default timer.

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.

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).

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).

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”.)

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.