string.ascii_lowercase

string.ascii_lowercase The lowercase letters 'abcdefghijklmnopqrstuvwxyz'. This value is not locale-dependent and will not change.

fractions.Fraction.__ceil__()

__ceil__() Returns the least int >= self. This method can also be accessed through the math.ceil() function.

tkinter.ttk.Treeview.identify_element()

identify_element(x, y) Returns the element at position x, y. Availability: Tk 8.6.

operator.__ne__()

operator.__ne__(a, b) operator.__ge__(a, b) operator.__gt__(a, b) Perform “rich comparisons” between a and b. Specifically, lt(a, b) is equivalent to a < b, le(a, b) is equivalent to a <= b, eq(a, b) is equivalent to a == b, ne(a, b) is equivalent to a != b, gt(a, b) is equivalent to a > b and ge(a, b) is equivalent to a >= b. Note that these functions can return any value, which may or may not be interpretable as a Boolean value. See Comparisons for more information about rich co

io.IOBase.close()

close() Flush and close this stream. This method has no effect if the file is already closed. Once the file is closed, any operation on the file (e.g. reading or writing) will raise a ValueError. As a convenience, it is allowed to call this method more than once; only the first call, however, will have an effect.

xml.sax.xmlreader.XMLReader.getContentHandler()

XMLReader.getContentHandler() Return the current ContentHandler.

inspect.isfunction()

inspect.isfunction(object) Return true if the object is a Python function, which includes functions created by a lambda expression.

set.discard()

discard(elem) Remove element elem from the set if it is present.

base64.decodebytes()

base64.decodebytes(s) base64.decodestring(s) Decode the bytes-like object s, which must contain one or more lines of base64 encoded data, and return the decoded bytes. decodestring is a deprecated alias. New in version 3.1.

textwrap.TextWrapper.break_long_words

break_long_words (default: True) If true, then words longer than width will be broken in order to ensure that no lines are longer than width. If it is false, long words will not be broken, and some lines may be longer than width. (Long words will be put on a line by themselves, in order to minimize the amount by which width is exceeded.)