diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2019-08-27 04:36:38 -0700 |
---|---|---|
committer | Jon Dufresne <jon.dufresne@gmail.com> | 2020-01-03 10:48:11 -0500 |
commit | ed1e9659f103260a32536b4a7615393e3b1173dc (patch) | |
tree | bc5b0e2aae24dd6b35a7d9c8d9e77331176f2f51 /numpy/doc/internals.py | |
parent | f30b2564d3923b2c307a026e4a22d20bc19872f0 (diff) | |
download | numpy-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/doc/internals.py')
-rw-r--r-- | numpy/doc/internals.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/doc/internals.py b/numpy/doc/internals.py index a14fee7c2..6718f1108 100644 --- a/numpy/doc/internals.py +++ b/numpy/doc/internals.py @@ -160,4 +160,3 @@ when accessing elements of an array. Granted, it goes against the grain, but it is more in line with Python semantics and the natural order of the data. """ -from __future__ import division, absolute_import, print_function |