Lines Matching full:inappropriate
4336 interpreter exiting. exceptions.TypeError Inappropriate argument type. exceptions.StopIteration Signal the end from iterator.next(). exceptions.GeneratorExit Request that a generator exit. exceptions.SystemExit Request to exit from the interpreter. exceptions.KeyboardInterrupt Program interrupted by user. exceptions.ImportError Import can't find module, or can't find name in module. exceptions.EnvironmentError Base class for I/O related errors. exceptions.IOError I/O operation failed. exceptions.OSError OS system call failed. exceptions.EOFError Read beyond end of file. exceptions.RuntimeError Unspecified run-time error. exceptions.NotImplementedError Method or function hasn't been implemented yet. exceptions.NameError Name not found globally. exceptions.UnboundLocalError Local name referenced but not bound to a value. exceptions.AttributeError Attribute not found. exceptions.SyntaxError Invalid syntax. exceptions.IndentationError Improper indentation. exceptions.TabError Improper mixture of spaces and tabs. exceptions.LookupError Base class for lookup errors. exceptions.IndexError Sequence index out of range. exceptions.KeyError Mapping key not found. exceptions.ValueError Inappropriate argument value (of correct type). exceptions.UnicodeError Unicode related error. exceptions.UnicodeEncodeError Unicode encoding error. exceptions.UnicodeDecodeError Unicode decoding error. exceptions.UnicodeTranslateError Unicode translation error. exceptions.AssertionError Assertion failed. exceptions.ArithmeticError Base class for arithmetic errors. exceptions.FloatingPointError Floating point operation failed. exceptions.OverflowError Result too large to be represented. exceptions.ZeroDivisionError Second argument to a division or modulo operation was zero. exceptions.SystemError Internal error in the Python interpreter.
11579 inappropriate tp_free slot bases must be types multiple bases have instance lay-out conflict a new-style class can't have only classic bases duplicate base class %s [O] mro mro() returned a non-class ('%.500s') mro() returned base with unsuitable layout ('%.500s') can't set %s.__bases__ can't delete %s.__bases__ can only assign tuple to %s.__bases__, not %s can only assign non-empty tuple to %s.__bases__, not () %s.__bases__ must be tuple of old- or new-style classes, not '%s' a __bases__ item causes an inheritance cycle __bases__ type() takes 1 or 3 arguments SO!O!:type metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases type '%.100s' is not an acceptable base type __slots__ nonempty __slots__ not supported for subtype of '%s' __slots__ items must be strings, not '%.200s' __slots__ must be identifiers __dict__ slot disallowed: we already got one __weakref__ __weakref__ slot disallowed: either we already got one, or __itemsize__ != 0 attribute name must be string, not '%.200s' type object '%.50s' has no attribute '%.400s' object The most base type x.__cmp__(y) <==> cmp(x,y) x.__repr__() <==> repr(x) x.__hash__() <==> hash(x) x.__call__(...) <==> x(...) x.__str__() <==> str(x) x.__getattribute__('name') <==> x.name x.__setattr__('name', value) <==> x.name = value x.__delattr__('name') <==> del x.name __lt__ x.__lt__(y) <==> x<y __le__ x.__le__(y) <==> x<=y x.__eq__(y) <==> x==y __ne__ x.__ne__(y) <==> x!=y __gt__ x.__gt__(y) <==> x>y __ge__ x.__ge__(y) <==> x>=y x.__iter__() <==> iter(x) x.next() -> the next value, or raise StopIteration descr.__get__(obj[, type]) -> value descr.__set__(obj, value) descr.__delete__(obj) x.__init__(...) initializes x; see help(type(x)) for signature x.__add__(y) <==> x+y x.__radd__(y) <==> y+x x.__sub__(y) <==> x-y x.__rsub__(y) <==> y-x x.__mul__(y) <==> x*y x.__rmul__(y) <==> y*x x.__div__(y) <==> x/y x.__rdiv__(y) <==> y/x x.__mod__(y) <==> x%y x.__rmod__(y) <==> y%x x.__divmod__(y) <==> divmod(x, y) x.__rdivmod__(y) <==> divmod(y, x) x.__pow__(y[, z]) <==> pow(x, y[, z]) y.__rpow__(x[, z]) <==> pow(x, y[, z]) x.__neg__() <==> -x x.__pos__() <==> +x x.__abs__() <==> abs(x) x.__nonzero__() <==> x != 0 x.__invert__() <==> ~x x.__lshift__(y) <==> x<<y x.__rlshift__(y) <==> y<<x x.__rshift__(y) <==> x>>y x.__rrshift__(y) <==> y>>x x.__and__(y) <==> x&y x.__rand__(y) <==> y&x x.__xor__(y) <==> x^y x.__rxor__(y) <==> y^x x.__or__(y) <==> x|y x.__ror__(y) <==> y|x x.__coerce__(y) <==> coerce(x, y) x.__int__() <==> int(x) x.__long__() <==> long(x) x.__float__() <==> float(x) x.__oct__() <==> oct(x) x.__hex__() <==> hex(x) x.__iadd__(y) <==> x+=y x.__isub__(y) <==> x-=y x.__imul__(y) <==> x*=y x.__idiv__(y) <==> x/=y x.__imod__(y) <==> x%=y x.__ipow__(y) <==> x**=y x.__ilshift__(y) <==> x<<=y x.__irshift__(y) <==> x>>=y x.__iand__(y) <==> x&=y x.__ixor__(y) <==> x^=y x.__ior__(y) <==> x|=y x.__floordiv__(y) <==> x//y x.__rfloordiv__(y) <==> y//x x.__truediv__(y) <==> x/y x.__rtruediv__(y) <==> y/x x.__ifloordiv__(y) <==> x//y x.__itruediv__(y) <==> x/y x[y:z] <==> x[y.__index__():z.__index__()] x.__len__() <==> len(x) x.__getitem__(y) <==> x[y] x.__setitem__(i, y) <==> x[i]=y x.__delitem__(y) <==> del x[y] x.__mul__(n) <==> x*n x.__rmul__(n) <==> n*x x.__getslice__(i, j) <==> x[i:j]