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.

asyncio.SubprocessProtocol.pipe_data_received()

SubprocessProtocol.pipe_data_received(fd, data) Called when the child process writes data into its stdout or stderr pipe. fd is the integer file descriptor of the pipe. data is a non-empty bytes object containing the data.

termios.tcdrain()

termios.tcdrain(fd) Wait until all output written to file descriptor fd has been transmitted.

xml.dom.Document.createComment()

Document.createComment(data) Create and return a comment node containing the data passed as a parameter. As with the other creation methods, this one does not insert the node into the tree.

symtable.SymbolTable.get_children()

get_children() Return a list of the nested symbol tables.

threading.BrokenBarrierError

exception threading.BrokenBarrierError This exception, a subclass of RuntimeError, is raised when the Barrier object is reset or broken.

calendar.setfirstweekday()

calendar.setfirstweekday(weekday) Sets the weekday (0 is Monday, 6 is Sunday) to start each week. The values MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY are provided for convenience. For example, to set the first weekday to Sunday: import calendar calendar.setfirstweekday(calendar.SUNDAY)