File: __init__.py

package info (click to toggle)
sphinx-autoapi 3.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 900 kB
  • sloc: python: 5,146; makefile: 7
file content (27 lines) | stat: -rw-r--r-- 368 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
22
23
24
25
26
27
from ...subpackage import *

__all__ = [
    "SimpleClass",
    "simple_function",
    "public_chain",
    "module_level_function",
    "does_not_exist",
]


class SimpleClass:
    def simple_method(self):
        return 5


class NotAllClass:
    def not_all_method(self):
        return 5


def simple_function():
    return 5


def not_all_function():
    return 5