stringprep.in_table_c4()

stringprep.in_table_c4(code) Determine whether code is in tableC.4 (Non-character code points).

http.cookies.Morsel.coded_value

Morsel.coded_value The encoded value of the cookie — this is what should be sent. Deprecated since version 3.5: assigning to coded_value; use set() instead.

xml.etree.ElementTree.iterparse()

xml.etree.ElementTree.iterparse(source, events=None, parser=None) Parses an XML section into an element tree incrementally, and reports what’s going on to the user. source is a filename or file object containing XML data. events is a sequence of events to report back. The supported events are the strings "start", "end", "start-ns" and "end-ns" (the “ns” events are used to get detailed namespace information). If events is omitted, only "end" events are reported. parser is an optional parser i

xml.parsers.expat.xmlparser.EndDoctypeDeclHandler()

xmlparser.EndDoctypeDeclHandler() Called when Expat is done parsing the document type declaration. This requires Expat version 1.2 or newer.

imaplib.IMAP4.readline()

IMAP4.readline() Reads one line from the remote server. You may override this method.

ossaudiodev.oss_mixer_device.close()

oss_mixer_device.close() This method closes the open mixer device file. Any further attempts to use the mixer after this file is closed will raise an OSError.

bdb.Bdb.user_exception()

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

http.client.NotConnected

exception http.client.NotConnected A subclass of HTTPException.

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.