msilib.CreateRecord()

msilib.CreateRecord(count) Return a new record object by calling MSICreateRecord(). count is the number of fields of the record.

audioop.add()

audioop.add(fragment1, fragment2, width) Return a fragment which is the addition of the two samples passed as parameters. width is the sample width in bytes, either 1, 2, 3 or 4. Both fragments should have the same length. Samples are truncated in case of overflow.

nntplib.NNTP.body()

NNTP.body(message_spec=None, *, file=None) Same as article(), but sends a BODY command. The lines returned (or written to file) will only contain the message body, not the headers.

queue.PriorityQueue

class queue.PriorityQueue(maxsize=0) Constructor for a priority queue. maxsize is an integer that sets the upperbound limit on the number of items that can be placed in the queue. Insertion will block once this size has been reached, until queue items are consumed. If maxsize is less than or equal to zero, the queue size is infinite. The lowest valued entries are retrieved first (the lowest valued entry is the one returned by sorted(list(entries))[0]). A typical pattern for entries is a tupl

venv.EnvBuilder.post_setup()

post_setup(context) A placeholder method which can be overridden in third party implementations to pre-install packages in the virtual environment or perform other post-creation steps.

os.getloadavg()

os.getloadavg() Return the number of processes in the system run queue averaged over the last 1, 5, and 15 minutes or raises OSError if the load average was unobtainable. Availability: Unix.

datetime.datetime.max

datetime.max The latest representable datetime, datetime(MAXYEAR, 12, 31, 23, 59, 59, 999999, tzinfo=None).

typing.ValuesView

class typing.ValuesView(MappingView[VT_co]) A generic version of collections.abc.ValuesView.

os.lchown()

os.lchown(path, uid, gid) Change the owner and group id of path to the numeric uid and gid. This function will not follow symbolic links. As of Python 3.3, this is equivalent to os.chown(path, uid, gid, follow_symlinks=False). Availability: Unix.

io.TextIOBase.tell()

tell() Return the current stream position as an opaque number. The number does not usually represent a number of bytes in the underlying binary storage.