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/pypackageexample/package/subpackage/__init__.py

14 lines
238 B
Python

"""This is a docstring."""
from .submodule import function as aliased_function
from .submodule import not_in_all_function
__all__ = (
"aliased_function",
"function",
)
def function(foo, bar):
"""A module level function"""