ipaddress.IPv4Interface.ip

ip The address (IPv4Address) without network information. >>> interface = IPv4Interface('192.0.2.5/24') >>> interface.ip IPv4Address('192.0.2.5')

decimal.getcontext()

decimal.getcontext() Return the current context for the active thread.

http.client.HTTPResponse.msg

HTTPResponse.msg A http.client.HTTPMessage instance containing the response headers. http.client.HTTPMessage is a subclass of email.message.Message.

logging.config.dictConfig()

logging.config.dictConfig(config) Takes the logging configuration from a dictionary. The contents of this dictionary are described in Configuration dictionary schema below. If an error is encountered during configuration, this function will raise a ValueError, TypeError, AttributeError or ImportError with a suitably descriptive message. The following is a (possibly incomplete) list of conditions which will raise an error: A level which is not a string or which is a string not corresponding t

http.cookiejar.DefaultCookiePolicy.DomainStrict

DefaultCookiePolicy.DomainStrict Equivalent to DomainStrictNoDots|DomainStrictNonDomain.

pyclbr.Class.file

Class.file Name of the file containing the class statement defining the class.

math.asin()

math.asin(x) Return the arc sine of x, in radians.

ipaddress.IPv6Address.version

version

os.getgid()

os.getgid() Return the real group id of the current process. Availability: Unix.

os.WIFSTOPPED()

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