Home | History | Annotate | Download | only in tutorial

Lines Matching full:inheritance

10 features of Object Oriented Programming: the class inheritance mechanism allows
501 .. _tut-inheritance:
503 Inheritance
507 supporting inheritance. The syntax for a derived class definition looks like
549 Python has two built-in functions that work with inheritance:
555 * Use :func:`issubclass` to check class inheritance: ``issubclass(bool, int)``
565 Multiple Inheritance
568 Python supports a limited form of multiple inheritance as well. A class
593 other multiple-inheritance languages as call-next-method and is more powerful
594 than the super call found in single-inheritance languages.
597 multiple inheritance exhibit one or more diamond relationships (where at
600 :class:`object`, so any case of multiple inheritance provides more than one path
607 multiple inheritance. For more detail, see