From f2abd6377ba69688713b7c6aef58005b31242f5a Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Thu, 10 Jul 2008 18:26:29 +0000 Subject: Sort numpy.doc names. --- numpy/doc/reference/__init__.py | 1 + 1 file changed, 1 insertion(+) 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__) -- cgit v1.2.1