pprint.PrettyPrinter.pformat()

PrettyPrinter.pformat(object) Return the formatted representation of object. This takes into account the options passed to the PrettyPrinter constructor.

ossaudiodev.oss_audio_device.read()

oss_audio_device.read(size) Read size bytes from the audio input and return them as a Python string. Unlike most Unix device drivers, OSS audio devices in blocking mode (the default) will block read() until the entire requested amount of data is available.

asyncio.asyncio.subprocess.Process.pid

pid The identifier of the process. Note that for processes created by the create_subprocess_shell() function, this attribute is the process identifier of the spawned shell.

string.Template.template

template This is the object passed to the constructor’s template argument. In general, you shouldn’t change it, but read-only access is not enforced.

smtpd.SMTPChannel.addr

addr Holds the address of the client, the second value returned by socket.accept

imaplib.IMAP4.open()

IMAP4.open(host, port) Opens socket to port at host. This method is implicitly called by the IMAP4 constructor. The connection objects established by this method will be used in the IMAP4.read(), IMAP4.readline(), IMAP4.send(), and IMAP4.shutdown() methods. You may override this method.

http.cookiejar.DefaultCookiePolicy.DomainStrict

DefaultCookiePolicy.DomainStrict Equivalent to DomainStrictNoDots|DomainStrictNonDomain.

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.client.HTTPResponse.msg

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

ipaddress.IPv4Interface.ip

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