string.ascii_lowercase

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

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

tkinter.ttk.Treeview.identify_element()

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

fractions.Fraction.__ceil__()

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

stringprep.in_table_c5()

stringprep.in_table_c5(code) Determine whether code is in tableC.5 (Surrogate codes).

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.

inspect.isfunction()

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

xml.sax.xmlreader.XMLReader.getContentHandler()

XMLReader.getContentHandler() Return the current ContentHandler.

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.