Lines Matching full:inheritance
4516 inheritance cycle __name__ must be a string object __name__ must not contain null bytes classes are read-only in restricted mode the class associated with a method the function (or other callable) implementing a method the instance to which a method is bound; None for unbound methods GCC: (Ubuntu 4.8.4-2ubuntu1~14.04.1) 4.8.4 zR x? 0 4 0 E B?D?D ?a
7190 inheritance hierarchy.
17066 order (MRO) for bases cannot 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 type type.__init__() takes no keyword arguments type.__init__() takes 1 or 3 arguments Can'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' objects Out of memory interning slotdef names can'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-tuple in 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 iterable method cannot be both class and static Overriding __eq__ blocks inheritance of __hash__ in 3.x type '%.100s' participates in gc and is a base type but has inappropriate tp_free slot a new-style class can't have only classic bases multiple bases have instance lay-out conflict 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 nonempty __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__ != 0 mro() returned a non-class ('%.500s') mro() returned base with unsuitable layout ('%.500s') 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 attribute name must be string, not '%.200s' type object '%.50s' has no attribute '%.400s' the instance invoking super(); may be None the type of the instance invoking super(); may be None x.__getattribute__('name') <==> x.name x.__setattr__('name', value) <==> x.name = value x.__delattr__('name') <==> del x.name x.next() -> the next value, or raise StopIteration descr.__get__(obj[, type]) -> value x.__init__(...) initializes x; see help(type(x)) for signature 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.__coerce__(y) <==> coerce(x, y) x[y:z] <==> x[y.__index__():z.__index__()] x.__setitem__(i, y) <==> x[i]=y x.__delitem__(y) <==> del x[y] x.__getslice__(i, j) <==> x[i:j]