xml.sax.SAXNotSupportedException

exception xml.sax.SAXNotSupportedException(msg, exception=None) Subclass of SAXException raised when a SAX XMLReader is asked to enable a feature that is not supported, or to set a property to a value that the implementation does not support. SAX applications and extensions may use this class for similar purposes.

asyncio.AbstractEventLoop.getnameinfo()

coroutine AbstractEventLoop.getnameinfo(sockaddr, flags=0) This method is a coroutine, similar to socket.getnameinfo() function but non-blocking.

ast.fix_missing_locations()

ast.fix_missing_locations(node) When you compile a node tree with compile(), the compiler expects lineno and col_offset attributes for every node that supports them. This is rather tedious to fill in for generated nodes, so this helper adds these attributes recursively where not already set, by setting them to the values of the parent node. It works recursively starting at node.

unittest.removeHandler()

unittest.removeHandler(function=None) When called without arguments this function removes the control-c handler if it has been installed. This function can also be used as a test decorator to temporarily remove the handler whilst the test is being executed: @unittest.removeHandler def test_signal_handling(self): ...

ctypes.alignment()

ctypes.alignment(obj_or_type) Returns the alignment requirements of a ctypes type. obj_or_type must be a ctypes type or instance.

asyncio.BaseProtocol.pause_writing()

BaseProtocol.pause_writing() Called when the transport’s buffer goes over the high-water mark.

http.cookiejar.Cookie.get_nonstandard_attr()

Cookie.get_nonstandard_attr(name, default=None) If cookie has the named cookie-attribute, return its value. Otherwise, return default.

time.time()

time.time() Return the time in seconds since the epoch as a floating point number. Note that even though the time is always returned as a floating point number, not all systems provide time with a better precision than 1 second. While this function normally returns non-decreasing values, it can return a lower value than a previous call if the system clock has been set back between the two calls.

decimal.Decimal.min()

min(other, context=None) Like min(self, other) except that the context rounding rule is applied before returning and that NaN values are either signaled or ignored (depending on the context and whether they are signaling or quiet).

termios.tcsendbreak()

termios.tcsendbreak(fd, duration) Send a break on file descriptor fd. A zero duration sends a break for 0.25 –0.5 seconds; a nonzero duration has a system dependent meaning.