configparser.ConfigParser.options()

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

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.

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.

msilib.Dialog.checkbox()

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

bytes.isspace()

bytes.isspace() bytearray.isspace() Return true if all bytes in the sequence are ASCII whitespace and the sequence is not empty, false otherwise. ASCII whitespace characters are those byte values in the sequence b' \t\n\r\x0b\f' (space, tab, newline, carriage return, vertical tab, form feed).

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.

asyncio.AbstractEventLoop.create_server()

coroutine AbstractEventLoop.create_server(protocol_factory, host=None, port=None, *, family=socket.AF_UNSPEC, flags=socket.AI_PASSIVE, sock=None, backlog=100, ssl=None, reuse_address=None, reuse_port=None) Create a TCP server (socket type SOCK_STREAM) bound to host and port. Return a Server object, its sockets attribute contains created sockets. Use the Server.close() method to stop the server: close listening sockets. Parameters: The host parameter can be a string, in that case the TCP serv

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.