xml.dom.Node.nextSibling

Node.nextSibling The node that immediately follows this one with the same parent. See also previousSibling. If this is the last child of the parent, this attribute will be None. This is a read-only attribute.

msilib.Dialog.checkbox()

checkbox(name, x, y, width, height, attributes, property, text, next_control) Add and return a CheckBox control.

urllib.request.HTTPPasswordMgrWithPriorAuth

class urllib.request.HTTPPasswordMgrWithPriorAuth A variant of HTTPPasswordMgrWithDefaultRealm that also has a database of uri -> is_authenticated mappings. Can be used by a BasicAuth handler to determine when to send authentication credentials immediately instead of waiting for a 401 response first. New in version 3.5.

configparser.ConfigParser.options()

options(section) Return a list of options available in the specified section.

tkinter.ttk.Treeview.item()

item(item, option=None, **kw) Query or modify the options for the specified item. If no options are given, a dict with options/values for the item is returned. If option is specified then the value for that option is returned. Otherwise, sets the options to the corresponding values as given by kw.

zipfile.ZipInfo.filename

ZipInfo.filename Name of the file in the archive.

ctypes._SimpleCData.value

value This attribute contains the actual value of the instance. For integer and pointer types, it is an integer, for character types, it is a single character bytes object or string, for character pointer types it is a Python bytes object or string. When the value attribute is retrieved from a ctypes instance, usually a new object is returned each time. ctypes does not implement original object return, always a new object is constructed. The same is true for all other ctypes object instances

ftplib.FTP.voidcmd()

FTP.voidcmd(cmd) Send a simple command string to the server and handle the response. Return nothing if a response code corresponding to success (codes in the range 200–299) is received. Raise error_reply otherwise.

curses.window.deleteln()

window.deleteln() Delete the line under the cursor. All following lines are moved up by one line.

wsgiref.simple_server.WSGIServer.set_app()

set_app(application) Sets the callable application as the WSGI application that will receive requests.