mailbox.Maildir.close()

close() Maildir instances do not keep any open files and the underlying mailboxes do not support locking, so this method does nothing.

logging.Handler.acquire()

Handler.acquire() Acquires the thread lock created with createLock().

importlib.machinery.ModuleSpec.loader

loader

sys.base_prefix

sys.base_prefix Set during Python startup, before site.py is run, to the same value as prefix. If not running in a virtual environment, the values will stay the same; if site.py finds that a virtual environment is in use, the values of prefix and exec_prefix will be changed to point to the virtual environment, whereas base_prefix and base_exec_prefix will remain pointing to the base Python installation (the one which the virtual environment was created from). New in version 3.3.

xml.parsers.expat.xmlparser.ErrorByteIndex

xmlparser.ErrorByteIndex Byte index at which an error occurred.

sys._debugmallocstats()

sys._debugmallocstats() Print low-level information to stderr about the state of CPython’s memory allocator. If Python is configured –with-pydebug, it also performs some expensive internal consistency checks. New in version 3.3. CPython implementation detail: This function is specific to CPython. The exact output format is not defined here, and may change.

tkinter.ttk.Treeview.identify_row()

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

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

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.

xml.dom.DOMException

exception xml.dom.DOMException Base exception class used for all specific DOM exceptions. This exception class cannot be directly instantiated.