xdrlib.Unpacker.unpack_string()

Unpacker.unpack_string() Unpacks and returns a variable length string. The length of the string is first unpacked as an unsigned integer, then the string data is unpacked with unpack_fstring().

pstats.Stats.dump_stats()

dump_stats(filename) Save the data loaded into the Stats object to a file named filename. The file is created if it does not exist, and is overwritten if it already exists. This is equivalent to the method of the same name on the profile.Profile and cProfile.Profile classes.

curses.window.resize()

window.resize(nlines, ncols) Reallocate storage for a curses window to adjust its dimensions to the specified values. If either dimension is larger than the current values, the window’s data is filled with blanks that have the current background rendition (as set by bkgdset()) merged into them.

mailbox.Mailbox.iterkeys()

iterkeys() keys() Return an iterator over all keys if called as iterkeys() or return a list of keys if called as keys().

nntplib.NNTPError.response

response The response of the server if available, as a str object.

ConnectionAbortedError

exception ConnectionAbortedError A subclass of ConnectionError, raised when a connection attempt is aborted by the peer. Corresponds to errno ECONNABORTED.

html.parser.HTMLParser.reset()

HTMLParser.reset() Reset the instance. Loses all unprocessed data. This is called implicitly at instantiation time.

imaplib.IMAP4.fetch()

IMAP4.fetch(message_set, message_parts) Fetch (parts of) messages. message_parts should be a string of message part names enclosed within parentheses, eg: "(UID BODY[TEXT])". Returned data are tuples of message part envelope and data.

json.dumps()

json.dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True, allow_nan=True, cls=None, indent=None, separators=None, default=None, sort_keys=False, **kw) Serialize obj to a JSON formatted str using this conversion table. The arguments have the same meaning as in dump(). Note Unlike pickle and marshal, JSON is not a framed protocol, so trying to serialize multiple objects with repeated calls to dump() using the same fp will result in an invalid JSON file. Note Keys in key/value

datetime.datetime.time()

datetime.time() Return time object with same hour, minute, second and microsecond. tzinfo is None. See also method timetz().