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.

xml.dom.InvalidModificationErr

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

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)

unicodedata.name()

unicodedata.name(chr[, default]) Returns the name assigned to the character chr as a string. If no name is defined, default is returned, or, if not given, ValueError is raised.

imaplib.Int2AP()

imaplib.Int2AP(num) Converts an integer into a string representation using characters from the set [A .. P].