diff options
author | Robert Kern <robert.kern@gmail.com> | 2008-07-29 22:49:45 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2008-07-29 22:49:45 +0000 |
commit | 4cd620b72fe709ae7092a698a1b22cb9c12de04c (patch) | |
tree | 6e51f632316cf36ac21c7dc2592ab6ef05159728 /numpy/ma/extras.py | |
parent | 9d932d5e212003e1e0e6e30be2b6358c9c0e0759 (diff) | |
download | numpy-4cd620b72fe709ae7092a698a1b22cb9c12de04c.tar.gz |
BUG: missing import.
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r-- | numpy/ma/extras.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py index ab24d41c0..86046041f 100644 --- a/numpy/ma/extras.py +++ b/numpy/ma/extras.py @@ -28,6 +28,7 @@ __all__ = ['apply_along_axis', 'atleast_1d', 'atleast_2d', 'atleast_3d', ] from itertools import groupby +import warnings import core from core import MaskedArray, MAError, add, array, asarray, concatenate, count,\ |