urllib.request.Request.full_url

Request.full_url The original URL passed to the constructor. Changed in version 3.4. Request.full_url is a property with setter, getter and a deleter. Getting full_url returns the original request URL with the fragment, if it was present.

zlib.Decompress.decompress()

Decompress.decompress(data[, max_length]) Decompress data, returning a bytes object containing the uncompressed data corresponding to at least part of the data in string. This data should be concatenated to the output produced by any preceding calls to the decompress() method. Some of the input data may be preserved in internal buffers for later processing. If the optional parameter max_length is non-zero then the return value will be no longer than max_length. This may mean that not all of

datetime.datetime.day

datetime.day Between 1 and the number of days in the given month of the given year.

unittest.mock.patch.stopall()

patch.stopall() Stop all active patches. Only stops patches started with start.

exit

exit(code=None) Objects that when printed, print a message like “Use quit() or Ctrl-D (i.e. EOF) to exit”, and when called, raise SystemExit with the specified exit code.

dis.hasjrel

dis.hasjrel Sequence of bytecodes that have a relative jump target.

os.nice()

os.nice(increment) Add increment to the process’s “niceness”. Return the new niceness. Availability: Unix.

os.path.splitext()

os.path.splitext(path) Split the pathname path into a pair (root, ext) such that root + ext == path, and ext is empty or begins with a period and contains at most one period. Leading periods on the basename are ignored; splitext('.cshrc') returns ('.cshrc', '').

multiprocessing.Process.is_alive()

is_alive() Return whether the process is alive. Roughly, a process object is alive from the moment the start() method returns until the child process terminates.

inspect.Parameter.empty

empty A special class-level marker to specify absence of default values and annotations.