Skip to content

Commit

Permalink
MAINT: remove pkgload stuff from main __init__.py. See #1418.
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Aug 25, 2011
1 parent 82261b4 commit e11bf1d
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions scipy/__init__.py
Expand Up @@ -73,7 +73,7 @@
"""

__all__ = ['pkgload','test']
__all__ = ['test']

from numpy import show_config as show_numpy_config
if show_numpy_config is None:
Expand Down Expand Up @@ -115,14 +115,6 @@
raise ImportError(msg)
from scipy.version import version as __version__

# Load scipy packages and their global_symbols
from numpy._import_tools import PackageLoader
import os as _os
SCIPY_IMPORT_VERBOSE = int(_os.environ.get('SCIPY_IMPORT_VERBOSE','-1'))
del _os
pkgload = PackageLoader()
pkgload(verbose=SCIPY_IMPORT_VERBOSE,postpone=True)

from numpy.testing import Tester
test = Tester().test
bench = Tester().bench

0 comments on commit e11bf1d

Please sign in to comment.