summaryrefslogtreecommitdiff
path: root/numpy/ma/__init__.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-07-04 17:09:26 -0600
committerCharles Harris <charlesr.harris@gmail.com>2015-07-04 23:50:39 -0600
commit7c8c9adda27efe7f84fc98240ee1b7fa15714f06 (patch)
tree0506690eafdb29bad6b8f91527f05597c37e1718 /numpy/ma/__init__.py
parentc2ae6aa0103aecdb5e2a71504583451cada1bfbc (diff)
downloadnumpy-7c8c9adda27efe7f84fc98240ee1b7fa15714f06.tar.gz
STY,MAINT: PEP8 and pyflakes fixes for numpy/ma/*.py
Also * Add __all__ to numpy/ma/testutils.py * Remove various stray "#" We might want to consider removing/refactoring both numpy/ma/bench.py and numpy/ma/timer_comparison.
Diffstat (limited to 'numpy/ma/__init__.py')
-rw-r--r--numpy/ma/__init__.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/numpy/ma/__init__.py b/numpy/ma/__init__.py
index 0cb92f667..05b641dff 100644
--- a/numpy/ma/__init__.py
+++ b/numpy/ma/__init__.py
@@ -35,14 +35,12 @@ may now proceed to calculate the mean of the other values:
.. [1] Not-a-Number, a floating point value that is the result of an
invalid operation.
+.. moduleauthor:: Pierre Gerard-Marchant
+.. moduleauthor:: Jarrod Millman
+
"""
from __future__ import division, absolute_import, print_function
-__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) $'
-
from . import core
from .core import *