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.

urllib.request.URLopener

class urllib.request.URLopener(proxies=None, **x509) Deprecated since version 3.3. Base class for opening and reading URLs. Unless you need to support opening objects using schemes other than http:, ftp:, or file:, you probably want to use FancyURLopener. By default, the URLopener class sends a User-Agent header of urllib/VVV, where VVV is the urllib version number. Applications can define their own User-Agent header by subclassing URLopener or FancyURLopener and setting the class attribut

bisect.insort()

bisect.insort(a, x, lo=0, hi=len(a)) Similar to insort_left(), but inserting x in a after any existing entries of x.

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.

curses.has_colors()

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

mailbox.Maildir.close()

close() Maildir instances do not keep any open files and the underlying mailboxes do not support locking, so this method does nothing.