Home | History | Annotate | Download | only in lib

Lines Matching full:inappropriate

4336 interpreter exiting.exceptions.TypeErrorInappropriate argument type.exceptions.StopIterationSignal the end from iterator.next().exceptions.GeneratorExitRequest that a generator exit.exceptions.SystemExitRequest to exit from the interpreter.exceptions.KeyboardInterruptProgram interrupted by user.exceptions.ImportErrorImport can't find module, or can't find name in module.exceptions.EnvironmentErrorBase class for I/O related errors.exceptions.IOErrorI/O operation failed.exceptions.OSErrorOS system call failed.exceptions.EOFErrorRead beyond end of file.exceptions.RuntimeErrorUnspecified run-time error.exceptions.NotImplementedErrorMethod or function hasn't been implemented yet.exceptions.NameErrorName not found globally.exceptions.UnboundLocalErrorLocal name referenced but not bound to a value.exceptions.AttributeErrorAttribute not found.exceptions.SyntaxErrorInvalid syntax.exceptions.IndentationErrorImproper indentation.exceptions.TabErrorImproper mixture of spaces and tabs.exceptions.LookupErrorBase class for lookup errors.exceptions.IndexErrorSequence index out of range.exceptions.KeyErrorMapping key not found.exceptions.ValueErrorInappropriate argument value (of correct type).exceptions.UnicodeErrorUnicode related error.exceptions.UnicodeEncodeErrorUnicode encoding error.exceptions.UnicodeDecodeErrorUnicode decoding error.exceptions.UnicodeTranslateErrorUnicode translation error.exceptions.AssertionErrorAssertion failed.exceptions.ArithmeticErrorBase class for arithmetic errors.exceptions.FloatingPointErrorFloating point operation failed.exceptions.OverflowErrorResult too large to be represented.exceptions.ZeroDivisionErrorSecond argument to a division or modulo operation was zero.exceptions.SystemErrorInternal error in the Python interpreter.
11579 inappropriate tp_free slotbases must be typesmultiple bases have instance lay-out conflicta new-style class can't have only classic basesduplicate base class %s[O]mromro() 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 %scan 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 argumentsSO!O!:typemetaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its basestype '%.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__ != 0attribute name must be string, not '%.200s'type object '%.50s' has no attribute '%.400s'objectThe most base typex.__cmp__(y) <==> cmp(x,y)x.__repr__() <==> repr(x)x.__hash__() <==> hash(x)x.__call__(...) <==> x(...)x.__str__() <==> str(x)x.__getattribute__('name') <==> x.namex.__setattr__('name', value) <==> x.name = valuex.__delattr__('name') <==> del x.name__lt__x.__lt__(y) <==> x<y__le__x.__le__(y) <==> x<=yx.__eq__(y) <==> x==y__ne__x.__ne__(y) <==> x!=y__gt__x.__gt__(y) <==> x>y__ge__x.__ge__(y) <==> x>=yx.__iter__() <==> iter(x)x.next() -> the next value, or raise StopIterationdescr.__get__(obj[, type]) -> valuedescr.__set__(obj, value)descr.__delete__(obj)x.__init__(...) initializes x; see help(type(x)) for signaturex.__add__(y) <==> x+yx.__radd__(y) <==> y+xx.__sub__(y) <==> x-yx.__rsub__(y) <==> y-xx.__mul__(y) <==> x*yx.__rmul__(y) <==> y*xx.__div__(y) <==> x/yx.__rdiv__(y) <==> y/xx.__mod__(y) <==> x%yx.__rmod__(y) <==> y%xx.__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__() <==> -xx.__pos__() <==> +xx.__abs__() <==> abs(x)x.__nonzero__() <==> x != 0x.__invert__() <==> ~xx.__lshift__(y) <==> x<<yx.__rlshift__(y) <==> y<<xx.__rshift__(y) <==> x>>yx.__rrshift__(y) <==> y>>xx.__and__(y) <==> x&yx.__rand__(y) <==> y&xx.__xor__(y) <==> x^yx.__rxor__(y) <==> y^xx.__or__(y) <==> x|yx.__ror__(y) <==> y|xx.__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+=yx.__isub__(y) <==> x-=yx.__imul__(y) <==> x*=yx.__idiv__(y) <==> x/=yx.__imod__(y) <==> x%=yx.__ipow__(y) <==> x**=yx.__ilshift__(y) <==> x<<=yx.__irshift__(y) <==> x>>=yx.__iand__(y) <==> x&=yx.__ixor__(y) <==> x^=yx.__ior__(y) <==> x|=yx.__floordiv__(y) <==> x//yx.__rfloordiv__(y) <==> y//xx.__truediv__(y) <==> x/yx.__rtruediv__(y) <==> y/xx.__ifloordiv__(y) <==> x//yx.__itruediv__(y) <==> x/yx[y:z] <==> x[y.__index__():z.__index__()]x.__len__() <==> len(x)x.__getitem__(y) <==> x[y]x.__setitem__(i, y) <==> x[i]=yx.__delitem__(y) <==> del x[y]x.__mul__(n) <==> x*nx.__rmul__(n) <==> n*xx.__getslice__(i, j) <==> x[i:j]