diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2008-07-09 08:13:18 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2008-07-09 08:13:18 +0000 |
commit | c114dd8293e5ab72b57f3810df476b6528966d4f (patch) | |
tree | 5c363dd738d3de585ef0f3579cb564aeb20aae96 /numpy/__init__.py | |
parent | 89bdcf9a990f5aa44b9830ae366f3c02f7b5bd7a (diff) | |
download | numpy-c114dd8293e5ab72b57f3810df476b6528966d4f.tar.gz |
Add numpy.doc topical documentation framework.
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index def3cac27..eac45af4a 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -108,6 +108,7 @@ else: import random import ctypeslib import ma + import doc # Make these accessible from numpy name-space # but not imported in from numpy import * @@ -119,5 +120,5 @@ else: 'show_config']) __all__.extend(core.__all__) __all__.extend(lib.__all__) - __all__.extend(['linalg', 'fft', 'random', 'ctypeslib', 'ma']) + __all__.extend(['linalg', 'fft', 'random', 'ctypeslib', 'ma', 'doc']) |