binascii.rledecode_hqx()

binascii.rledecode_hqx(data) Perform RLE-decompression on the data, as per the binhex4 standard. The algorithm uses 0x90 after a byte as a repeat indicator, followed by a count. A count of 0 specifies a byte value of 0x90. The routine returns the decompressed data, unless data input data ends in an orphaned repeat indicator, in which case the Incomplete exception is raised. Changed in version 3.2: Accept only bytestring or bytearray objects as input.

datetime.timezone.fromutc()

timezone.fromutc(dt) Return dt + offset. The dt argument must be an aware datetime instance, with tzinfo set to self.

ipaddress.IPv6Interface.with_hostmask

with_hostmask Refer to the corresponding attribute documentation in IPv4Interface.

logging.handlers.QueueListener.dequeue()

dequeue(block) Dequeues a record and return it, optionally blocking. The base implementation uses get(). You may want to override this method if you want to use timeouts or work with custom queue implementations.

types.FrameType

types.FrameType The type of frame objects such as found in tb.tb_frame if tb is a traceback object.

code.interact()

code.interact(banner=None, readfunc=None, local=None) Convenience function to run a read-eval-print loop. This creates a new instance of InteractiveConsole and sets readfunc to be used as the InteractiveConsole.raw_input() method, if provided. If local is provided, it is passed to the InteractiveConsole constructor for use as the default namespace for the interpreter loop. The interact() method of the instance is then run with banner passed as the banner to use, if provided. The console obje

SyntaxWarning

exception SyntaxWarning Base class for warnings about dubious syntax.

math.erfc()

math.erfc(x) Return the complementary error function at x. The complementary error function is defined as 1.0 - erf(x). It is used for large values of x where a subtraction from one would cause a loss of significance. New in version 3.2.

unittest.mock.Mock.__dir__()

__dir__() Mock objects limit the results of dir(some_mock) to useful results. For mocks with a spec this includes all the permitted attributes for the mock. See FILTER_DIR for what this filtering does, and how to switch it off.

decimal.Context.min_mag()

min_mag(x, y) Compares the values numerically with their sign ignored.