tkinter.ttk.Widget.instate()

instate(statespec, callback=None, *args, **kw) Test the widget’s state. If a callback is not specified, returns True if the widget state matches statespec and False otherwise. If callback is specified then it is called with args if widget state matches statespec.

asyncio.WriteTransport.can_write_eof()

can_write_eof() Return True if the transport supports write_eof(), False if not.

xmlrpc.server.SimpleXMLRPCRequestHandler.rpc_paths

SimpleXMLRPCRequestHandler.rpc_paths An attribute value that must be a tuple listing valid path portions of the URL for receiving XML-RPC requests. Requests posted to other paths will result in a 404 “no such page” HTTP error. If this tuple is empty, all paths will be considered valid. The default value is ('/', '/RPC2').

lzma.LZMADecompressor.unused_data

unused_data Data found after the end of the compressed stream. Before the end of the stream is reached, this will be b"".

xml.dom.ProcessingInstruction.data

ProcessingInstruction.data The content of the processing instruction following the first whitespace character.

turtle.circle()

turtle.circle(radius, extent=None, steps=None) Parameters: radius – a number extent – a number (or None) steps – an integer (or None) Draw a circle with given radius. The center is radius units left of the turtle; extent – an angle – determines which part of the circle is drawn. If extent is not given, draw the entire circle. If extent is not a full circle, one endpoint of the arc is the current pen position. Draw the arc in counterclockwise direction if radius is positive, otherwise

lzma.LZMADecompressor.check

check The ID of the integrity check used by the input stream. This may be CHECK_UNKNOWN until enough of the input has been decoded to determine what integrity check it uses.

lzma.LZMADecompressor.eof

eof True if the end-of-stream marker has been reached.

tarfile.TarFile.pax_headers

TarFile.pax_headers A dictionary containing key-value pairs of pax global headers.

os.WEXITSTATUS()

os.WEXITSTATUS(status) If WIFEXITED(status) is true, return the integer parameter to the exit(2) system call. Otherwise, the return value is meaningless. Availability: Unix.