lzma.LZMADecompressor.eof

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

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.

tarfile.TarFile.pax_headers

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

http.cookiejar.DefaultCookiePolicy.strict_rfc2965_unverifiable

DefaultCookiePolicy.strict_rfc2965_unverifiable Follow RFC 2965 rules on unverifiable transactions (usually, an unverifiable transaction is one resulting from a redirect or a request for an image hosted on another site). If this is false, cookies are never blocked on the basis of verifiability

turtle.RawPen

class turtle.RawPen(canvas) Parameters: canvas – a tkinter.Canvas, a ScrolledCanvas or a TurtleScreen Create a turtle. The turtle has all methods described above as “methods of Turtle/RawTurtle”.

email.message.Message.__contains__()

__contains__(name) Return true if the message object has a field named name. Matching is done case-insensitively and name should not include the trailing colon. Used for the in operator, e.g.: if 'message-id' in myMessage: print('Message-ID:', myMessage['message-id'])

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').

asyncio.WriteTransport.can_write_eof()

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

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.

sqlite3.Connection.executescript()

executescript(sql_script) This is a nonstandard shortcut that creates a cursor object by calling the cursor() method, calls the cursor’s executescript() method with the given sql_script, and returns the cursor.