summaryrefslogtreecommitdiff
path: root/numpy/ma/__init__.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2007-12-15 01:15:26 +0000
committerStefan van der Walt <stefan@sun.ac.za>2007-12-15 01:15:26 +0000
commit703e8d6323b19cbfeb96772c1e35f1cd68629336 (patch)
tree34bd23200d97ff43369d7d23d37c9c08c3d3a3b4 /numpy/ma/__init__.py
parent61f9f6d0fb169cadefe35ea2bdd783848aa771f5 (diff)
downloadnumpy-703e8d6323b19cbfeb96772c1e35f1cd68629336.tar.gz
Move ma to numpy root. Fix unit tests. Remove references to numpy.core.ma.
Diffstat (limited to 'numpy/ma/__init__.py')
-rw-r--r--numpy/ma/__init__.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/numpy/ma/__init__.py b/numpy/ma/__init__.py
new file mode 100644
index 000000000..ccbb6d3c6
--- /dev/null
+++ b/numpy/ma/__init__.py
@@ -0,0 +1,22 @@
+"""Masked arrays add-ons.
+
+A collection of utilities for maskedarray
+
+:author: Pierre GF Gerard-Marchant
+:contact: pierregm_at_uga_dot_edu
+:version: $Id: __init__.py 3473 2007-10-29 15:18:13Z jarrod.millman $
+"""
+__author__ = "Pierre GF Gerard-Marchant ($Author: jarrod.millman $)"
+__version__ = '1.0'
+__revision__ = "$Revision: 3473 $"
+__date__ = '$Date: 2007-10-29 17:18:13 +0200 (Mon, 29 Oct 2007) $'
+
+import core
+from core import *
+
+import extras
+from extras import *
+
+__all__ = ['core', 'extras']
+__all__ += core.__all__
+__all__ += extras.__all__