xdrlib.Unpacker.unpack_fopaque()

Unpacker.unpack_fopaque(n) Unpacks and returns a fixed length opaque data stream, similarly to unpack_fstring().

os.WIFSTOPPED()

os.WIFSTOPPED(status) Return True if the process has been stopped, otherwise return False. Availability: Unix.

ipaddress.IPv4Network.with_prefixlen

with_prefixlen

sys.meta_path

sys.meta_path A list of meta path finder objects that have their find_spec() methods called to see if one of the objects can find the module to be imported. The find_spec() method is called with at least the absolute name of the module being imported. If the module to be imported is contained in a package, then the parent package’s __path__ attribute is passed in as a second argument. The method returns a module spec, or None if the module cannot be found. See also importlib.abc.MetaPathF

csv.Error

exception csv.Error Raised by any of the functions when an error is detected.

typing.Text

class typing.Text Text is an alias for str. It is provided to supply a forward compatible path for Python 2 code: in Python 2, Text is an alias for unicode. Use Text to indicate that a value must contain a unicode string in a manner that is compatible with both Python 2 and Python 3: def add_unicode_checkmark(text: Text) -> Text: return text + u' \u2713'

winreg.CloseKey()

winreg.CloseKey(hkey) Closes a previously opened registry key. The hkey argument specifies a previously opened key. Note If hkey is not closed using this method (or via hkey.Close()), it is closed when the hkey object is destroyed by Python.

quopri.decodestring()

quopri.decodestring(s, header=False) Like decode(), except that it accepts a source bytes and returns the corresponding decoded bytes.

email.headerregistry.ContentTransferEncoding.cte

cte Valid values are 7bit, 8bit, base64, and quoted-printable. See RFC 2045 for more information.

all()

all(iterable) Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent to: def all(iterable): for element in iterable: if not element: return False return True