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/subpackage/submodule.py

14 lines
276 B
Python

def public_chain():
"""Part of a public resolution chain."""
return 5
def _private_made_public():
"""A private function made public by import."""
return 5
def public_multiple_imports():
"""A public function imported in multiple places."""
return 5