threading.stack_size([size]) Return the thread stack size used when creating new threads. The optional size argument
class multiprocessing.Queue([maxsize]) Returns a process shared queue implemented using a pipe and a few locks/semaphores. When
multiprocessing.get_all_start_methods() Returns a list of the supported start methods, the first of which is the default. The
isDaemon() setDaemon() Old getter/setter API for daemon; use it directly as a property instead.
recv_bytes_into(buffer[, offset]) Read into buffer a complete message of byte data sent from the other end of the connection
Queue.get_nowait() Equivalent to get(False).
map(func, iterable[, chunksize]) A parallel equivalent of the
Queue.join() Blocks until all items in the queue have been gotten and processed. The count of
abort() Put the barrier into a broken state. This causes any active or future calls to wait() to fail with the
last_accepted The address from which the last accepted connection came. If this is unavailable then it is None
Page 22 of 29