ctypes.Array._type_

_type_ Specifies the type of each element in the array.

stringprep.in_table_c5()

stringprep.in_table_c5(code) Determine whether code is in tableC.5 (Surrogate codes).

mailbox.MH.add_folder()

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

gc.disable()

gc.disable() Disable automatic garbage collection.

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.

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.

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.

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.