os.stat_result.st_gid

st_gid Group identifier of the file owner.

curses.noraw()

curses.noraw() Leave raw mode. Return to normal “cooked” mode with line buffering.

subprocess.Popen.wait()

Popen.wait(timeout=None) Wait for child process to terminate. Set and return returncode attribute. If the process does not terminate after timeout seconds, raise a TimeoutExpired exception. It is safe to catch this exception and retry the wait. Note This will deadlock when using stdout=PIPE or stderr=PIPE and the child process generates enough output to a pipe such that it blocks waiting for the OS pipe buffer to accept more data. Use Popen.communicate() when using pipes to avoid that. No

http.cookies.Morsel.setdefault()

Morsel.setdefault(key, value=None) Raise an error if key is not a valid RFC 2109 attribute, otherwise behave the same as dict.setdefault().

stat.S_ISSOCK()

stat.S_ISSOCK(mode) Return non-zero if the mode is from a socket.

doctest.Example.options

options A dictionary mapping from option flags to True or False, which is used to override default options for this example. Any option flags not contained in this dictionary are left at their default value (as specified by the DocTestRunner‘s optionflags). By default, no options are set.

operator.itruediv()

operator.itruediv(a, b) operator.__itruediv__(a, b) a = itruediv(a, b) is equivalent to a /= b.

threading.Thread.ident

ident The ‘thread identifier’ of this thread or None if the thread has not been started. This is a nonzero integer. See the _thread.get_ident() function. Thread identifiers may be recycled when a thread exits and another thread is created. The identifier is available even after the thread has exited.

wave.Wave_read.getsampwidth()

Wave_read.getsampwidth() Returns sample width in bytes.

curses.has_colors()

curses.has_colors() Return True if the terminal can display colors; otherwise, return False.