summaryrefslogtreecommitdiff
path: root/numpy/doc
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/doc')
-rw-r--r--numpy/doc/reference/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/doc/reference/__init__.py b/numpy/doc/reference/__init__.py
index c64a6fb0a..8664ea04d 100644
--- a/numpy/doc/reference/__init__.py
+++ b/numpy/doc/reference/__init__.py
@@ -4,6 +4,7 @@ ref_dir = os.path.join(os.path.dirname(__file__))
__all__ = [f[:-3] for f in os.listdir(ref_dir) if f.endswith('.py') and
not f.startswith('__')]
+__all__.sort()
__doc__ = 'The following topics are available:\n' + \
'\n - '.join([''] + __all__)