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.

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.

tracemalloc.Trace.traceback

traceback Traceback where the memory block was allocated, Traceback instance.