ctypes.PyDLL._handle

PyDLL._handle The system handle used to access the library.

operator.__iand__()

operator.__iand__(a, b) a = iand(a, b) is equivalent to a &= b.

math.trunc()

math.trunc(x) Return the Real value x truncated to an Integral (usually an integer). Delegates to x.__trunc__().

ctypes._CData.from_buffer()

from_buffer(source[, offset]) This method returns a ctypes instance that shares the buffer of the source object. The source object must support the writeable buffer interface. The optional offset parameter specifies an offset into the source buffer in bytes; the default is zero. If the source buffer is not large enough a ValueError is raised.

shutil.rmtree()

shutil.rmtree(path, ignore_errors=False, onerror=None) Delete an entire directory tree; path must point to a directory (but not a symbolic link to a directory). If ignore_errors is true, errors resulting from failed removals will be ignored; if false or omitted, such errors are handled by calling a handler specified by onerror or, if that is omitted, they raise an exception. Note On platforms that support the necessary fd-based functions a symlink attack resistant version of rmtree() is use

ossaudiodev.oss_mixer_device.fileno()

oss_mixer_device.fileno() Returns the file handle number of the open mixer device file.

http.client.HTTPResponse.reason

HTTPResponse.reason Reason phrase returned by server.

math.sqrt()

math.sqrt(x) Return the square root of x.

str.endswith()

str.endswith(suffix[, start[, end]]) Return True if the string ends with the specified suffix, otherwise return False. suffix can also be a tuple of suffixes to look for. With optional start, test beginning at that position. With optional end, stop comparing at that position.

xml.dom.Node.insertBefore()

Node.insertBefore(newChild, refChild) Insert a new child node before an existing child. It must be the case that refChild is a child of this node; if not, ValueError is raised. newChild is returned. If refChild is None, it inserts newChild at the end of the children’s list.