diff options
author | Robert Kern <robert.kern@gmail.com> | 2006-01-19 22:21:20 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2006-01-19 22:21:20 +0000 |
commit | 7cff614fe4080f735fe6b66c0f55ff4377b750bd (patch) | |
tree | 338e200fc5d9692b63ea74cebab4067fd7f696da /numpy/__init__.py | |
parent | 8e801afb78576b88737b97e5e1b2ca79930d5fb4 (diff) | |
download | numpy-7cff614fe4080f735fe6b66c0f55ff4377b750bd.tar.gz |
numpy no longer needs to be a namespace package.
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index 814e2f249..a945c75a5 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -19,12 +19,6 @@ try: except ImportError: show_config = None -try: - import pkg_resources as _pk # activate namespace packages (manipulates __path__) - del _pk -except ImportError: - pass - if show_config is None: import sys as _sys print >> _sys.stderr, 'Running from numpy source directory.' |