File: __init__.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 (29 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (2)
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
28
29
"""A test package with a sub-package at `.subpackage`."""

import demopackage2

from . import _child_e
from . import child_b
from ._child_d import Test
from .child_b import B
from .child_c import C
from .child_f import F
from .subpackage import G

if demopackage2:
    pass

__all__ = [
    "Test",
    "B",
    "C",
    "child_b",
    "child_c",
    "child_f",
    "demopackage2",
    "_child_e",
    "child_excluded",
    "subpackage",
    "F",
    "G",
]