tkinter.tix.LabelFrame

class tkinter.tix.LabelFrame The LabelFrame widget packages a frame widget and a label into one mega widget. To create widgets inside a LabelFrame widget, one creates the new widgets relative to the frame subwidget and manage them inside the frame subwidget.

decimal.Decimal.compare_total_mag()

compare_total_mag(other, context=None) Compare two operands using their abstract representation rather than their value as in compare_total(), but ignoring the sign of each operand. x.compare_total_mag(y) is equivalent to x.copy_abs().compare_total(y.copy_abs()). This operation is unaffected by context and is quiet: no flags are changed and no rounding is performed. As an exception, the C version may raise InvalidOperation if the second operand cannot be converted exactly.

math.atan()

math.atan(x) Return the arc tangent of x, in radians.

datetime.datetime.min

datetime.min The earliest representable datetime, datetime(MINYEAR, 1, 1, tzinfo=None).

oct()

oct(x) Convert an integer number to an octal string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() method that returns an integer.

uu.Error

exception uu.Error Subclass of Exception, this can be raised by uu.decode() under various situations, such as described above, but also including a badly formatted header, or truncated input file.

audioop.getsample()

audioop.getsample(fragment, width, index) Return the value of sample index from the fragment.

os.stat_result.st_nlink

st_nlink Number of hard links.

mailbox.MHMessage.remove_sequence()

remove_sequence(sequence) Remove sequence from the list of sequences that include this message.

str.find()

str.find(sub[, start[, end]]) Return the lowest index in the string where substring sub is found within the slice s[start:end]. Optional arguments start and end are interpreted as in slice notation. Return -1 if sub is not found. Note The find() method should be used only if you need to know the position of sub. To check if sub is a substring or not, use the in operator: >>> 'Py' in 'Python' True