summaryrefslogtreecommitdiff
path: root/numpy/ma/extras.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2019-08-27 04:36:38 -0700
committerJon Dufresne <jon.dufresne@gmail.com>2020-01-03 10:48:11 -0500
commited1e9659f103260a32536b4a7615393e3b1173dc (patch)
treebc5b0e2aae24dd6b35a7d9c8d9e77331176f2f51 /numpy/ma/extras.py
parentf30b2564d3923b2c307a026e4a22d20bc19872f0 (diff)
downloadnumpy-ed1e9659f103260a32536b4a7615393e3b1173dc.tar.gz
MAINT: Remove unnecessary 'from __future__ import ...' statements
As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior.
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r--numpy/ma/extras.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py
index f4a914471..221e648c5 100644
--- a/numpy/ma/extras.py
+++ b/numpy/ma/extras.py
@@ -8,8 +8,6 @@ A collection of utilities for `numpy.ma`.
:version: $Id: extras.py 3473 2007-10-29 15:18:13Z jarrod.millman $
"""
-from __future__ import division, absolute_import, print_function
-
__all__ = [
'apply_along_axis', 'apply_over_axes', 'atleast_1d', 'atleast_2d',
'atleast_3d', 'average', 'clump_masked', 'clump_unmasked',