Lines Matching refs:inherits
82 in a class by defining a new class, which "inherits" from the former.
83 In other words, a class B which inherits from the class A, inherits
84 the properties defined in A, or, B inherits the structure of A.
90 >>> class B(A): # B inherits A's properties
101 inherits the properties of another class. This property is called
103 class inherits from. The classes from which a class is inheriting the
215 defining a new meta-class, which "inherits" from the former.
216 In other words, a meta-class N which inherits from the meta-class M,
217 inherits the properties defined in M, or, N inherits the structure of M.
223 >>> metaclass N(M): # N inherits M's properties
234 meta-class inherits the properties of another meta-class. This property
236 meta-classes the new meta-class inherits from. The meta-classes from