decimal.Context.minus()

minus(x) Minus corresponds to the unary prefix minus operator in Python.

logging.handlers.QueueListener.start()

start() Starts the listener. This starts up a background thread to monitor the queue for LogRecords to process.

decimal.Context.next_minus()

next_minus(x) Returns the largest representable number smaller than x.

operator.__ge__()

operator.__ge__(a, b) operator.__gt__(a, b) Perform “rich comparisons” between a and b. Specifically, lt(a, b) is equivalent to a < b, le(a, b) is equivalent to a <= b, eq(a, b) is equivalent to a == b, ne(a, b) is equivalent to a != b, gt(a, b) is equivalent to a > b and ge(a, b) is equivalent to a >= b. Note that these functions can return any value, which may or may not be interpretable as a Boolean value. See Comparisons for more information about rich comparisons.

dbm.dumb.error

exception dbm.dumb.error Raised on dbm.dumb-specific errors, such as I/O errors. KeyError is raised for general mapping errors like specifying an incorrect key.

multiprocessing.Queue.get_nowait()

get_nowait() Equivalent to get(False).

datetime.datetime.day

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

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

cmath.tan()

cmath.tan(x) Return the tangent of x.