msilib.CreateRecord()

msilib.CreateRecord(count) Return a new record object by calling MSICreateRecord(). count is the number of fields of the record.

bytearray.count()

bytearray.count(sub[, start[, end]]) Return the number of non-overlapping occurrences of subsequence sub in the range [start, end]. Optional arguments start and end are interpreted as in slice notation. The subsequence to search for may be any bytes-like object or an integer in the range 0 to 255. Changed in version 3.3: Also accept an integer in the range 0 to 255 as the subsequence.

bytes.startswith()

bytes.startswith(prefix[, start[, end]]) bytearray.startswith(prefix[, start[, end]]) Return True if the binary data starts with the specified prefix, otherwise return False. prefix can also be a tuple of prefixes to look for. With optional start, test beginning at that position. With optional end, stop comparing at that position. The prefix(es) to search for may be any bytes-like object.

email.policy.Policy.max_line_length

max_line_length The maximum length of any line in the serialized output, not counting the end of line character(s). Default is 78, per RFC 5322. A value of 0 or None indicates that no line wrapping should be done at all.

decimal.Decimal.compare_total()

compare_total(other, context=None) Compare two operands using their abstract representation rather than their numerical value. Similar to the compare() method, but the result gives a total ordering on Decimal instances. Two Decimal instances with the same numeric value but different representations compare unequal in this ordering: >>> Decimal('12.0').compare_total(Decimal('12')) Decimal('-1') Quiet and signaling NaNs are also included in the total ordering. The result of this func

zipfile.ZipInfo.reserved

ZipInfo.reserved Must be zero.

datetime.datetime.resolution

datetime.resolution The smallest possible difference between non-equal datetime objects, timedelta(microseconds=1).

inspect.Parameter.name

name The name of the parameter as a string. The name must be a valid Python identifier.

netrc.netrc.__repr__()

netrc.__repr__() Dump the class data as a string in the format of a netrc file. (This discards comments and may reorder the entries.)

http.cookiejar.DefaultCookiePolicy.DomainStrictNonDomain

DefaultCookiePolicy.DomainStrictNonDomain Cookies that did not explicitly specify a domain cookie-attribute can only be returned to a domain equal to the domain that set the cookie (eg. spam.example.com won’t be returned cookies from example.com that had no domain cookie-attribute).