You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sphinx-autoapi/tests/python/pypackagecomplex/complex/wildall/simple/__init__.py

28 lines
382 B
Python

from ...subpackage import *
__all__ = [
"SimpleClass",
"simple_function",
"public_chain",
"module_level_method",
"does_not_exist",
]
class SimpleClass(object):
def simple_method(self):
return 5
class NotAllClass(object):
def not_all_method(self):
return 5
def simple_function():
return 5
def not_all_function():
return 5