summaryrefslogtreecommitdiff
path: root/numpy/doc
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2008-07-10 18:26:29 +0000
committerStefan van der Walt <stefan@sun.ac.za>2008-07-10 18:26:29 +0000
commitf2abd6377ba69688713b7c6aef58005b31242f5a (patch)
tree0bda246501a729f2cb23bcdc4f7a52d03833ae28 /numpy/doc
parent9a27253a10f8c1f9775b688eb65e41d227fa84e4 (diff)
downloadnumpy-f2abd6377ba69688713b7c6aef58005b31242f5a.tar.gz
Sort numpy.doc names.
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__)