cgi.FieldStorage.getlist()

FieldStorage.getlist(name) This method always returns a list of values associated with form field name. The method returns an empty list if no such form field or value exists for name. It returns a list consisting of one item if only one such value exists.

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.

nntplib.NNTP.xpath()

NNTP.xpath(id) Return a pair (resp, path), where path is the directory path to the article with message ID id. Most of the time, this extension is not enabled by NNTP server administrators. Deprecated since version 3.3: The XPATH extension is not actively used.

bdb.Bdb.reset()

reset() Set the botframe, stopframe, returnframe and quitting attributes with values ready to start debugging.

pathlib.Path.stat()

Path.stat() Return information about this path (similarly to os.stat()). The result is looked up at each call to this method. >>> p = Path('setup.py') >>> p.stat().st_size 956 >>> p.stat().st_mtime 1327883547.852554