diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2020-01-03 15:57:43 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 15:57:43 -0600 |
commit | b7c27bd2a3817f59c84b004b87bba5db57d9a9b0 (patch) | |
tree | d1667015baca8a46ef286862368cc641a7cfe980 /numpy/lib/scimath.py | |
parent | e1aecb08f99321b72959cc50eb7b47454b613f52 (diff) | |
parent | ed1e9659f103260a32536b4a7615393e3b1173dc (diff) | |
download | numpy-b7c27bd2a3817f59c84b004b87bba5db57d9a9b0.tar.gz |
Merge pull request #14376 from jdufresne/future
MAINT: Remove unnecessary 'from __future__ import ...' statements
Diffstat (limited to 'numpy/lib/scimath.py')
-rw-r--r-- | numpy/lib/scimath.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/lib/scimath.py b/numpy/lib/scimath.py index 5ac790ce9..555a3d5a8 100644 --- a/numpy/lib/scimath.py +++ b/numpy/lib/scimath.py @@ -15,8 +15,6 @@ Similarly, `sqrt`, other base logarithms, `power` and trig functions are correctly handled. See their respective docstrings for specific examples. """ -from __future__ import division, absolute_import, print_function - import numpy.core.numeric as nx import numpy.core.numerictypes as nt from numpy.core.numeric import asarray, any |