mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
An empty `__all__` should be represented as "there is no public items". But autodoc considers all items on the module are public. This changes the behavior to correct one.
17 lines
150 B
Python
17 lines
150 B
Python
"""
|
|
docsting of empty_all module.
|
|
"""
|
|
__all__ = []
|
|
|
|
|
|
def foo():
|
|
"""docstring"""
|
|
|
|
|
|
def bar():
|
|
"""docstring"""
|
|
|
|
|
|
def baz():
|
|
"""docstring"""
|