threading.Event.is_set()

is_set() Return true if and only if the internal flag is true.

inspect.Parameter

class inspect.Parameter(name, kind, *, default=Parameter.empty, annotation=Parameter.empty) Parameter objects are immutable. Instead of modifying a Parameter object, you can use Parameter.replace() to create a modified copy. Changed in version 3.5: Parameter objects are picklable and hashable. empty A special class-level marker to specify absence of default values and annotations. name The name of the parameter as a string. The name must be a valid Python identifier. default

http.cookiejar.DefaultCookiePolicy.DomainLiberal

DefaultCookiePolicy.DomainLiberal Equivalent to 0 (ie. all of the above Netscape domain strictness flags switched off).

logging.NullHandler.emit()

emit(record) This method does nothing.

locale.atof()

locale.atof(string) Converts a string to a floating point number, following the LC_NUMERIC settings.

nis.get_default_domain()

nis.get_default_domain() Return the system default NIS domain.

email.utils.decode_params()

email.utils.decode_params(params) Decode parameters list according to RFC 2231. params is a sequence of 2-tuples containing elements of the form (content-type, string-value).

email.charset.Charset.header_encoding

header_encoding If the character set must be encoded before it can be used in an email header, this attribute will be set to Charset.QP (for quoted-printable), Charset.BASE64 (for base64 encoding), or Charset.SHORTEST for the shortest of QP or BASE64 encoding. Otherwise, it will be None.

tarfile.TarInfo.mode

TarInfo.mode Permission bits.

textwrap.TextWrapper.wrap()

wrap(text) Wraps the single paragraph in text (a string) so every line is at most width characters long. All wrapping options are taken from instance attributes of the TextWrapper instance. Returns a list of output lines, without final newlines. If the wrapped output has no content, the returned list is empty.