sqlite3.version

sqlite3.version The version number of this module, as a string. This is not the version of the SQLite library.

smtpd.SMTPChannel.mailfrom

mailfrom Holds a string containing the address identified in the “MAIL FROM:” line from the client.

email.headerregistry.BaseHeader.name

name The name of the header (the portion of the field before the ‘:’). This is exactly the value passed in the header_factory call for name; that is, case is preserved.

aifc.aifc.getcompname()

aifc.getcompname() Return a bytes array convertible to a human-readable description of the type of compression used in the audio file. For AIFF files, the returned value is b'not compressed'.

os.path.relpath()

os.path.relpath(path, start=os.curdir) Return a relative filepath to path either from the current directory or from an optional start directory. This is a path computation: the filesystem is not accessed to confirm the existence or nature of path or start. start defaults to os.curdir. Availability: Unix, Windows.

inspect.isroutine()

inspect.isroutine(object) Return true if the object is a user-defined or built-in function or method.

asyncio.LimitOverrunError

exception asyncio.LimitOverrunError Reached the buffer limit while looking for a separator. consumed Total number of to be consumed bytes.

http.cookies.Morsel.isReservedKey()

Morsel.isReservedKey(K) Whether K is a member of the set of keys of a Morsel.

inspect.isbuiltin()

inspect.isbuiltin(object) Return true if the object is a built-in function or a bound built-in method.

textwrap.TextWrapper.initial_indent

initial_indent (default: '') String that will be prepended to the first line of wrapped output. Counts towards the length of the first line. The empty string is not indented.