ErrorMessage


Methods

f __add__(...) ...

x.__add__(y) <==> x+y

f __contains__(...) ...

x.__contains__(y) <==> y in x

f __eq__(...) ...

x.__eq__(y) <==> x==y

f __format__(...) ...

S.__format__(format_spec) -> string

f __ge__(...) ...

x.__ge__(y) <==> x>=y

f __getitem__(...) ...

x.__getitem__(y) <==> x[y]

f __getnewargs__(...) ...

f __getslice__(...) ...

x.__getslice__(i, j) <==> x[i:j]

Use of negative indices is not supported.

f __gt__(...) ...

x.__gt__(y) <==> x>y

f __init__(...) ...

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

f __le__(...) ...

x.__le__(y) <==> x<=y

f __len__(...) ...

x.__len__() <==> len(x)

f __lt__(...) ...

x.__lt__(y) <==> x<y

f __mod__(...) ...

x.__mod__(y) <==> x%y

f __mul__(...) ...

x.__mul__(n) <==> x*n

f __ne__(...) ...

x.__ne__(y) <==> x!=y

f __rmod__(...) ...

x.__rmod__(y) <==> y%x

f __rmul__(...) ...

x.__rmul__(n) <==> n*x

f __sizeof__(...) ...

S.__sizeof__() -> size of S in memory, in bytes

f __subclasshook__(...) ...

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

See the source for more information.