mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-11 19:10:58 +00:00
14 lines
276 B
Python
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
|