pipes.Template.debug()

Template.debug(flag) If flag is true, turn debugging on. Otherwise, turn debugging off. When debugging is on, commands to be executed are printed, and the shell is given set -x command to be more verbose.

curses.nonl()

curses.nonl() Leave newline mode. Disable translation of return into newline on input, and disable low-level translation of newline into newline/return on output (but this does not change the behavior of addch('\n'), which always does the equivalent of return and line feed on the virtual screen). With translation off, curses can sometimes speed up vertical motion a little; also, it will be able to detect the return key on input.

email.message.Message.get_params()

get_params(failobj=None, header='content-type', unquote=True) Return the message’s Content-Type parameters, as a list. The elements of the returned list are 2-tuples of key/value pairs, as split on the '=' sign. The left hand side of the '=' is the key, while the right hand side is the value. If there is no '=' sign in the parameter the value is the empty string, otherwise the value is as described in get_param() and is unquoted if optional unquote is True (the default). Optional failobj is

subprocess.CalledProcessError.returncode

returncode Exit status of the child process. If the process exited due to a signal, this will be the negative signal number.

sqlite3.version_info

sqlite3.version_info The version number of this module, as a tuple of integers. This is not the version of the SQLite library.

http.cookiejar.DefaultCookiePolicy.rfc2109_as_netscape

DefaultCookiePolicy.rfc2109_as_netscape If true, request that the CookieJar instance downgrade RFC 2109 cookies (ie. cookies received in a Set-Cookie header with a version cookie-attribute of 1) to Netscape cookies by setting the version attribute of the Cookie instance to 0. The default value is None, in which case RFC 2109 cookies are downgraded if and only if RFC 2965 handling is turned off. Therefore, RFC 2109 cookies are downgraded by default.

nntplib.NNTPTemporaryError

exception nntplib.NNTPTemporaryError Exception raised when a response code in the range 400–499 is received.

nis.maps()

nis.maps(domain=default_domain) Return a list of all valid maps. The domain argument allows overriding the NIS domain used for the lookup. If unspecified, lookup is in the default NIS domain.

selectors.SelectorKey.fd

fd Underlying file descriptor.

str.isupper()

str.isupper() Return true if all cased characters [4] in the string are uppercase and there is at least one cased character, false otherwise.