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.

operator.ifloordiv()

operator.ifloordiv(a, b) operator.__ifloordiv__(a, b) a = ifloordiv(a, b) is equivalent to a //= b.

datetime.datetime.time()

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

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