1from ...subpackage import *
2
3__all__ = [
4    "SimpleClass",
5    "simple_function",
6    "public_chain",
7    "module_level_method",
8    "does_not_exist",
9]
10
11
12class SimpleClass(object):
13    def simple_method(self):
14        return 5
15
16
17class NotAllClass(object):
18    def not_all_method(self):
19        return 5
20
21
22def simple_function():
23    return 5
24
25
26def not_all_function():
27    return 5
28