From ed1e9659f103260a32536b4a7615393e3b1173dc Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Tue, 27 Aug 2019 04:36:38 -0700 Subject: 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. --- numpy/lib/user_array.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'numpy/lib/user_array.py') diff --git a/numpy/lib/user_array.py b/numpy/lib/user_array.py index f1510a7b1..9172d4249 100644 --- a/numpy/lib/user_array.py +++ b/numpy/lib/user_array.py @@ -5,8 +5,6 @@ Try to inherit from the ndarray instead of using this class as this is not complete. """ -from __future__ import division, absolute_import, print_function - from numpy.core import ( array, asarray, absolute, add, subtract, multiply, divide, remainder, power, left_shift, right_shift, bitwise_and, bitwise_or, -- cgit v1.2.1