decimal.Decimal.adjusted()

adjusted() Return the adjusted exponent after shifting out the coefficient’s rightmost digits until only the lead digit remains: Decimal('321e+5').adjusted() returns seven. Used for determining the position of the most significant digit with respect to the decimal point.

poplib.POP3.pass_()

POP3.pass_(password) Send password, response includes message count and mailbox size. Note: the mailbox on the server is locked until quit() is called.

os.sched_get_priority_min()

os.sched_get_priority_min(policy) Get the minimum priority value for policy. policy is one of the scheduling policy constants above.

os.WIFCONTINUED()

os.WIFCONTINUED(status) Return True if the process has been continued from a job control stop, otherwise return False. Availability: Unix.

os.stat_result.st_mode

st_mode File mode: file type and file mode bits (permissions).

binascii.b2a_base64()

binascii.b2a_base64(data) Convert binary data to a line of ASCII characters in base64 coding. The return value is the converted line, including a newline char. The newline is added because the original use case for this function was to feed it a series of 57 byte input lines to get output lines that conform to the MIME-base64 standard. Otherwise the output conforms to RFC 3548.

imaplib.IMAP4.noop()

IMAP4.noop() Send NOOP to server.

logging.handlers.SocketHandler.send()

send(packet) Send a pickled string packet to the socket. This function allows for partial sends which can happen when the network is busy.

locale.currency()

locale.currency(val, symbol=True, grouping=False, international=False) Formats a number val according to the current LC_MONETARY settings. The returned string includes the currency symbol if symbol is true, which is the default. If grouping is true (which is not the default), grouping is done with the value. If international is true (which is not the default), the international currency symbol is used. Note that this function will not work with the ‘C’ locale, so you have to set a locale via

decimal.Underflow

class decimal.Underflow Numerical underflow with result rounded to zero. Occurs when a subnormal result is pushed to zero by rounding. Inexact and Subnormal are also signaled.