math.factorial()

math.factorial(x) Return x factorial. Raises ValueError if x is not integral or is negative.

ord()

ord(c) Given a string representing one Unicode character, return an integer representing the Unicode code point of that character. For example, ord('a') returns the integer 97 and ord('€') (Euro sign) returns 8364. This is the inverse of chr().

multiprocessing.Connection.poll()

poll([timeout]) Return whether there is any data available to be read. If timeout is not specified then it will return immediately. If timeout is a number then this specifies the maximum time in seconds to block. If timeout is None then an infinite timeout is used. Note that multiple connection objects may be polled at once by using multiprocessing.connection.wait().

http.cookiejar.DefaultCookiePolicy.is_not_allowed()

DefaultCookiePolicy.is_not_allowed(domain) Return whether domain is not on the whitelist for setting or receiving cookies.

logging.Logger.error()

Logger.error(msg, *args, **kwargs) Logs a message with level ERROR on this logger. The arguments are interpreted as for debug().

wave.Wave_read.readframes()

Wave_read.readframes(n) Reads and returns at most n frames of audio, as a string of bytes.

asyncore.dispatcher.handle_close()

handle_close() Called when the socket is closed.

operator.__add__()

operator.__add__(a, b) Return a + b, for a and b numbers.

io.StringIO.getvalue()

getvalue() Return a str containing the entire contents of the buffer. Newlines are decoded as if by read(), although the stream position is not changed.

ipaddress.IPv6Interface.ip

ip