File: child_c.py

package info (click to toggle)
python-pdoc 16.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,080 kB
  • sloc: python: 5,260; javascript: 1,156; makefile: 18; sh: 3
file content (10 lines) | stat: -rw-r--r-- 175 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
"""child_c docstr"""

from . import child_b


class C(child_b.B):
    """This class is defined in .child_c and inherits from .child_b.B."""

    def c(self):
        return 2