File: other_classes.py

package info (click to toggle)
sphinx-automodapi 0.22.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,180 kB
  • sloc: python: 1,769; makefile: 196
file content (21 lines) | stat: -rw-r--r-- 268 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
__all__ = ['Foo']


class BaseFoo:
    """
    Base class for Foo
    """

    def bar(self, time):
        """
        Eat some spam in the required time.
        """
        pass


class Foo(BaseFoo):
    """
    The main foo
    """
    def hmm(self):
        pass