bdb.Bdb.user_exception()

user_exception(frame, exc_info) This method is called from dispatch_exception() when stop_here() yields True.

sys.flags

sys.flags The struct sequence flags exposes the status of command line flags. The attributes are read only. attribute flag debug -d inspect -i interactive -i optimize -O or -OO dont_write_bytecode -B no_user_site -s no_site -S ignore_environment -E verbose -v bytes_warning -b quiet -q hash_randomization -R Changed in version 3.2: Added quiet attribute for the new -q flag. New in version 3.2.3: The hash_randomization attribute. Changed in version 3.3: Removed obsolete division_warnin

email.encoders.encode_base64()

email.encoders.encode_base64(msg) Encodes the payload into base64 form and sets the Content-Transfer-Encoding header to base64. This is a good encoding to use when most of your payload is unprintable data since it is a more compact form than quoted-printable. The drawback of base64 encoding is that it renders the text non-human readable.

inspect.getouterframes()

inspect.getouterframes(frame, context=1) Get a list of frame records for a frame and all outer frames. These frames represent the calls that lead to the creation of frame. The first entry in the returned list represents frame; the last entry represents the outermost call on frame‘s stack. Changed in version 3.5: A list of named tuples FrameInfo(frame, filename, lineno, function, code_context, index) is returned.

msilib.CAB

class msilib.CAB(name) The class CAB represents a CAB file. During MSI construction, files will be added simultaneously to the Files table, and to a CAB file. Then, when all files have been added, the CAB file can be written, then added to the MSI file. name is the name of the CAB file in the MSI file. append(full, file, logical) Add the file with the pathname full to the CAB file, under the name logical. If there is already a file named logical, a new file name is created. Return the ind

inspect.currentframe()

inspect.currentframe() Return the frame object for the caller’s stack frame. CPython implementation detail: This function relies on Python stack frame support in the interpreter, which isn’t guaranteed to exist in all implementations of Python. If running in an implementation without Python stack frame support this function returns None.

email.message.Message.get_content_subtype()

get_content_subtype() Return the message’s sub-content type. This is the subtype part of the string returned by get_content_type().

pty.fork()

pty.fork() Fork. Connect the child’s controlling terminal to a pseudo-terminal. Return value is (pid, fd). Note that the child gets pid 0, and the fd is invalid. The parent’s return value is the pid of the child, and fd is a file descriptor connected to the child’s controlling terminal (and also to the child’s standard input and output).

ipaddress.IPv6Network.overlaps()

overlaps(other)

msilib.Control.condition()

condition(action, condition) Make an entry into the ControlCondition table for this control.