inspect.getattr_static()

inspect.getattr_static(obj, attr, default=None) Retrieve attributes without triggering dynamic lookup via the descriptor protocol, __getattr__() or __getattribute__(). Note: this function may not be able to retrieve all attributes that getattr can fetch (like dynamically created attributes) and may find attributes that getattr can’t (like descriptors that raise AttributeError). It can also return descriptors objects instead of instance members. If the instance __dict__ is shadowed by another

os.path.lexists()

os.path.lexists(path) Return True if path refers to an existing path. Returns True for broken symbolic links. Equivalent to exists() on platforms lacking os.lstat().

http.client.HTTPConnection.connect()

HTTPConnection.connect() Connect to the server specified when the object was created. By default, this is called automatically when making a request if the client does not already have a connection.

os.path.splitdrive()

os.path.splitdrive(path) Split the pathname path into a pair (drive, tail) where drive is either a mount point or the empty string. On systems which do not use drive specifications, drive will always be the empty string. In all cases, drive + tail will be the same as path. On Windows, splits a pathname into drive/UNC sharepoint and relative path. If the path contains a drive letter, drive will contain everything up to and including the colon. e.g. splitdrive("c:/dir") returns ("c:", "/dir")

pipes.Template.clone()

Template.clone() Return a new, equivalent, pipeline template.

lzma.LZMAError

exception lzma.LZMAError This exception is raised when an error occurs during compression or decompression, or while initializing the compressor/decompressor state.

email.headerregistry.ContentDispositionHeader

class email.headerregistry.ContentDispositionHeader A ParameterizedMIMEHeader class that handles the Content-Disposition header. content-disposition inline and attachment are the only valid values in common use.

curses.window.getyx()

window.getyx() Return a tuple (y, x) of current cursor position relative to the window’s upper-left corner.

json.JSONDecodeError.colno

colno The column corresponding to pos.

chunk.Chunk.getname()

getname() Returns the name (ID) of the chunk. This is the first 4 bytes of the chunk.