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

asyncio.BaseEventLoop

class asyncio.BaseEventLoop This class is an implementation detail. It is a subclass of AbstractEventLoop and may be a base class of concrete event loop implementations found in asyncio. It should not be used directly; use AbstractEventLoop instead. BaseEventLoop should not be subclassed by third-party code; the internal interface is not stable.

tkinter.ttk.Treeview.reattach()

reattach(item, parent, index) An alias for Treeview.move().

symtable.Symbol.is_declared_global()

is_declared_global() Return True if the symbol is declared global with a global statement.

xml.dom.Attr.localName

Attr.localName The part of the name following the colon if there is one, else the entire name. This is a read-only attribute.