Home | History | Annotate | Download | only in lib

Lines Matching full:inheritance

4516 inheritance cycle__name__ must be a string object__name__ must not contain null bytesclasses are read-only in restricted modethe class associated with a methodthe function (or other callable) implementing a methodthe instance to which a method is bound; None for unbound methodsGCC: (Ubuntu 4.8.4-2ubuntu1~14.04.1) 4.8.4zRx?040EB?D?D ?a
7190 inheritance hierarchy.
17066 order (MRO) for basescannot create '%.100s' instances%s.__cmp__(x,y) requires y to be a '%s', not a '%s'__new__() called with non-type 'self'%s.__new__(): not enough arguments%s.__new__(X): X is not a type object (%s)%s.__new__(%s): %s is not a subtype of %s%s.__new__(%s) is not safe, use %s.__new__()super(type, obj): obj must be an instance or subtype of typetype.__init__() takes no keyword argumentstype.__init__() takes 1 or 3 argumentsCan't instantiate abstract class %s with abstract methods %s__dict__ must be set to a dictionary, not a '%.200s'this __dict__ descriptor does not support '%.200s' objectsOut of memory interning slotdef namescan't set attributes of built-in/extension type '%s'__init__() should return None, not '%.200s'%s should return bool or int, returned %s__coerce__ didn't return a 2-tuplein 3.x, __delslice__ has been removed; use __delitem__in 3.x, __setslice__ has been removed; use __setitem__in 3.x, __getslice__ has been removed; use __getitem__'%.200s' object is not iterablemethod cannot be both class and staticOverriding __eq__ blocks inheritance of __hash__ in 3.xtype '%.100s' participates in gc and is a base type but has inappropriate tp_free slota new-style class can't have only classic basesmultiple bases have instance lay-out conflictmetaclass 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 typenonempty __slots__ not supported for subtype of '%s'__slots__ items must be strings, not '%.200s'__dict__ slot disallowed: we already got one__weakref__ slot disallowed: either we already got one, or __itemsize__ != 0mro() returned a non-class ('%.500s')mro() returned base with unsuitable layout ('%.500s')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 cycleattribute name must be string, not '%.200s'type object '%.50s' has no attribute '%.400s'the instance invoking super(); may be Nonethe type of the instance invoking super(); may be Nonex.__getattribute__('name') <==> x.namex.__setattr__('name', value) <==> x.name = valuex.__delattr__('name') <==> del x.namex.next() -> the next value, or raise StopIterationdescr.__get__(obj[, type]) -> valuex.__init__(...) initializes x; see help(type(x)) for signaturex.__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.__coerce__(y) <==> coerce(x, y)x[y:z] <==> x[y.__index__():z.__index__()]x.__setitem__(i, y) <==> x[i]=yx.__delitem__(y) <==> del x[y]x.__getslice__(i, j) <==> x[i:j]