summaryrefslogtreecommitdiff
path: root/numpy/__init__.py
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2018-07-01 15:13:21 -0700
committerEric Wieser <wieser.eric@gmail.com>2018-07-02 09:08:48 -0700
commit2244cd929354fb4157eaa78204ad6bb3bebea9bf (patch)
tree91f66502dc6e1601e13fdd6bc328a6243ab3f21d /numpy/__init__.py
parent11302b66fec3e9f64e0eb77075344acec65d2c0f (diff)
downloadnumpy-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__.py4
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__