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).

xml.etree.ElementTree.XMLParser.doctype()

doctype(name, pubid, system) Deprecated since version 3.2: Define the TreeBuilder.doctype() method on a custom TreeBuilder target.

sys.__excepthook__

sys.__excepthook__ These objects contain the original values of displayhook and excepthook at the start of the program. They are saved so that displayhook and excepthook can be restored in case they happen to get replaced with broken objects.

winreg.PyHKEY.Detach()

PyHKEY.Detach() Detaches the Windows handle from the handle object. The result is an integer that holds the value of the handle before it is detached. If the handle is already detached or closed, this will return zero. After calling this function, the handle is effectively invalidated, but the handle is not closed. You would call this function when you need the underlying Win32 handle to exist beyond the lifetime of the handle object.