io.IOBase.writelines()

writelines(lines) Write a list of lines to the stream. Line separators are not added, so it is usual for each of the lines provided to have a line separator at the end.

curses.window.getbegyx()

window.getbegyx() Return a tuple (y, x) of co-ordinates of upper-left corner.

pipes.Template

class pipes.Template An abstraction of a pipeline.

site.getsitepackages()

site.getsitepackages() Return a list containing all global site-packages directories. New in version 3.2.

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

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.

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.

msilib.CreateRecord()

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

bytearray.count()

bytearray.count(sub[, start[, end]]) Return the number of non-overlapping occurrences of subsequence sub in the range [start, end]. Optional arguments start and end are interpreted as in slice notation. The subsequence to search for may be any bytes-like object or an integer in the range 0 to 255. Changed in version 3.3: Also accept an integer in the range 0 to 255 as the subsequence.

bytes.startswith()

bytes.startswith(prefix[, start[, end]]) bytearray.startswith(prefix[, start[, end]]) Return True if the binary data starts with the specified prefix, otherwise return False. prefix can also be a tuple of prefixes to look for. With optional start, test beginning at that position. With optional end, stop comparing at that position. The prefix(es) to search for may be any bytes-like object.