decimal.Context.Etiny()

Etiny() Returns a value equal to Emin - prec + 1 which is the minimum exponent value for subnormal results. When underflow occurs, the exponent is set to Etiny.

ctypes.LibraryLoader.LoadLibrary()

LoadLibrary(name) Load a shared library into the process and return it. This method always returns a new instance of the library.

mimetypes.MimeTypes.guess_extension()

MimeTypes.guess_extension(type, strict=True) Similar to the guess_extension() function, using the tables stored as part of the object.

email.headerregistry.HeaderRegistry.__getitem__()

__getitem__(name) Construct and return a class to handle creating a name header.

curses.window.touchline()

window.touchline(start, count[, changed]) Pretend count lines have been changed, starting with line start. If changed is supplied, it specifies whether the affected lines are marked as having been changed (changed=1) or unchanged (changed=0).

xml.parsers.expat.errors.messages

xml.parsers.expat.errors.messages A dictionary mapping string descriptions to their error codes. New in version 3.2.

os.posix_fallocate()

os.posix_fallocate(fd, offset, len) Ensures that enough disk space is allocated for the file specified by fd starting from offset and continuing for len bytes. Availability: Unix. New in version 3.3.

winreg.QueryInfoKey()

winreg.QueryInfoKey(key) Returns information about a key, as a tuple. key is an already open key, or one of the predefined HKEY_* constants. The result is a tuple of 3 items: Index Meaning 0 An integer giving the number of sub keys this key has. 1 An integer giving the number of values this key has. 2 An integer giving when the key was last modified (if available) as 100’s of nanoseconds since Jan 1, 1601.

xml.etree.ElementTree.ElementTree.iterfind()

iterfind(match, namespaces=None) Same as Element.iterfind(), starting at the root of the tree. New in version 3.2.

weakref.WeakKeyDictionary.keyrefs()

WeakKeyDictionary.keyrefs() Return an iterable of the weak references to the keys.