diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-07-01 15:13:21 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2018-07-02 09:08:48 -0700 |
commit | 2244cd929354fb4157eaa78204ad6bb3bebea9bf (patch) | |
tree | 91f66502dc6e1601e13fdd6bc328a6243ab3f21d /numpy/__init__.py | |
parent | 11302b66fec3e9f64e0eb77075344acec65d2c0f (diff) | |
download | numpy-2244cd929354fb4157eaa78204ad6bb3bebea9bf.tar.gz |
MAINT: Move add_newdocs into core, since it only adds docs to those pieces
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index c4232dcb3..0e269cc84 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -139,9 +139,7 @@ else: loader = PackageLoader(infunc=True) return loader(*packages, **options) - from . import add_newdocs - __all__ = ['add_newdocs', - 'ModuleDeprecationWarning', + __all__ = ['ModuleDeprecationWarning', 'VisibleDeprecationWarning'] pkgload.__doc__ = PackageLoader.__call__.__doc__ |