textwrap.TextWrapper.break_long_words

break_long_words (default: True) If true, then words longer than width will be broken in order to ensure that no lines are longer than width. If it is false, long words will not be broken, and some lines may be longer than width. (Long words will be put on a line by themselves, in order to minimize the amount by which width is exceeded.)

ctypes.Array._type_

_type_ Specifies the type of each element in the array.

mailbox.MH.add_folder()

add_folder(folder) Create a folder whose name is folder and return an MH instance representing it.

time.clock()

time.clock() On Unix, return the current processor time as a floating point number expressed in seconds. The precision, and in fact the very definition of the meaning of “processor time”, depends on that of the C function of the same name. On Windows, this function returns wall-clock seconds elapsed since the first call to this function, as a floating point number, based on the Win32 function QueryPerformanceCounter(). The resolution is typically better than one microsecond. Deprecated sinc

operator.lshift()

operator.lshift(a, b) operator.__lshift__(a, b) Return a shifted left by b.

decimal.Decimal.min_mag()

min_mag(other, context=None) Similar to the min() method, but the comparison is done using the absolute values of the operands.

gc.disable()

gc.disable() Disable automatic garbage collection.

audioop.avgpp()

audioop.avgpp(fragment, width) Return the average peak-peak value over all samples in the fragment. No filtering is done, so the usefulness of this routine is questionable.

curses.window.enclose()

window.enclose(y, x) Test whether the given pair of screen-relative character-cell coordinates are enclosed by the given window, returning True or False. It is useful for determining what subset of the screen windows enclose the location of a mouse event.

select.poll.unregister()

poll.unregister(fd) Remove a file descriptor being tracked by a polling object. Just like the register() method, fd can be an integer or an object with a fileno() method that returns an integer. Attempting to remove a file descriptor that was never registered causes a KeyError exception to be raised.