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.

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.

smtpd.SMTPChannel.addr

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

xml.dom.InvalidModificationErr

exception xml.dom.InvalidModificationErr Raised when an attempt is made to modify the type of a node.

chunk.Chunk.skip()

skip() Skip to the end of the chunk. All further calls to read() for the chunk will return b''. If you are not interested in the contents of the chunk, this method should be called so that the file points to the start of the next chunk.

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.

http.cookiejar.DefaultCookiePolicy.DomainStrict

DefaultCookiePolicy.DomainStrict Equivalent to DomainStrictNoDots|DomainStrictNonDomain.