os.isatty()

os.isatty(fd) Return True if the file descriptor fd is open and connected to a tty(-like) device, else False.

os.lchflags()

os.lchflags(path, flags) Set the flags of path to the numeric flags, like chflags(), but do not follow symbolic links. As of Python 3.3, this is equivalent to os.chflags(path, flags, follow_symlinks=False). Availability: Unix.

cgi.escape()

cgi.escape(s, quote=False) Convert the characters '&', '<' and '>' in string s to HTML-safe sequences. Use this if you need to display text that might contain such characters in HTML. If the optional flag quote is true, the quotation mark character (") is also translated; this helps for inclusion in an HTML attribute value delimited by double quotes, as in <a href="...">. Note that single quotes are never translated. Deprecated since version 3.2: This function is unsafe beca

container.__iter__()

container.__iter__() Return an iterator object. The object is required to support the iterator protocol described below. If a container supports different types of iteration, additional methods can be provided to specifically request iterators for those iteration types. (An example of an object supporting multiple forms of iteration would be a tree structure which supports both breadth-first and depth-first traversal.) This method corresponds to the tp_iter slot of the type structure for Pyt

os.stat_result.st_blksize

st_blksize “Preferred” blocksize for efficient file system I/O. Writing to a file in smaller chunks may cause an inefficient read-modify-rewrite.

cmath.rect()

cmath.rect(r, phi) Return the complex number x with polar coordinates r and phi. Equivalent to r * (math.cos(phi) + math.sin(phi)*1j).

poplib.POP3.quit()

POP3.quit() Signoff: commit changes, unlock mailbox, drop connection.

symtable.SymbolTable.is_nested()

is_nested() Return True if the block is a nested class or function.

bytearray.split()

bytearray.split(sep=None, maxsplit=-1) Split the binary sequence into subsequences of the same type, using sep as the delimiter string. If maxsplit is given and non-negative, at most maxsplit splits are done (thus, the list will have at most maxsplit+1 elements). If maxsplit is not specified or is -1, then there is no limit on the number of splits (all possible splits are made). If sep is given, consecutive delimiters are not grouped together and are deemed to delimit empty subsequences (for

ossaudiodev.oss_audio_device.closed

oss_audio_device.closed Boolean indicating whether the device has been closed.