diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2008-07-10 18:26:29 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2008-07-10 18:26:29 +0000 |
commit | f2abd6377ba69688713b7c6aef58005b31242f5a (patch) | |
tree | 0bda246501a729f2cb23bcdc4f7a52d03833ae28 /numpy/doc | |
parent | 9a27253a10f8c1f9775b688eb65e41d227fa84e4 (diff) | |
download | numpy-f2abd6377ba69688713b7c6aef58005b31242f5a.tar.gz |
Sort numpy.doc names.
Diffstat (limited to 'numpy/doc')
-rw-r--r-- | numpy/doc/reference/__init__.py | 1 |
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__) |