xml.parsers.expat.xmlparser.EndNamespaceDeclHandler()

xmlparser.EndNamespaceDeclHandler(prefix) Called when the closing tag is reached for an element that contained a namespace declaration. This is called once for each namespace declaration on the element in the reverse of the order for which the StartNamespaceDeclHandler was called to indicate the start of each namespace declaration’s scope. Calls to this handler are made after the corresponding EndElementHandler for the end of the element.

asyncio.StreamWriter.transport

transport Transport.

http.server.BaseHTTPRequestHandler.close_connection

close_connection Boolean that should be set before handle_one_request() returns, indicating if another request may be expected, or if the connection should be shut down.

inspect.getclosurevars()

inspect.getclosurevars(func) Get the mapping of external name references in a Python function or method func to their current values. A named tuple ClosureVars(nonlocals, globals, builtins, unbound) is returned. nonlocals maps referenced names to lexical closure variables, globals to the function’s module globals and builtins to the builtins visible from the function body. unbound is the set of names referenced in the function that could not be resolved at all given the current module global

zipfile.ZipInfo.create_version

ZipInfo.create_version PKZIP version which created ZIP archive.

FutureWarning

exception FutureWarning Base class for warnings about constructs that will change semantically in the future.

os.path.getatime()

os.path.getatime(path) Return the time of last access of path. The return value is a number giving the number of seconds since the epoch (see the time module). Raise OSError if the file does not exist or is inaccessible. If os.stat_float_times() returns True, the result is a floating point number.

turtle.ycor()

turtle.ycor() Return the turtle’s y coordinate. >>> turtle.home() >>> turtle.left(60) >>> turtle.forward(100) >>> print(turtle.pos()) (50.00,86.60) >>> print(round(turtle.ycor(), 5)) 86.60254

tkinter.ttk.Treeview.identify_row()

identify_row(y) Returns the item ID of the item at position y.

email.message.EmailMessage.clear_content()

clear_content() Remove the payload and all of the Content- headers, leaving all other headers intact and in their original order.