diff options
author | Warren Weckesser <warren.weckesser@gmail.com> | 2020-01-23 13:48:38 -0500 |
---|---|---|
committer | Warren Weckesser <warren.weckesser@gmail.com> | 2020-01-23 14:05:15 -0500 |
commit | 021163b5e2293286b26d22bdae51305da634e74d (patch) | |
tree | dea44e19f7bbbeda64a219506fdcf8088e449ea6 /numpy/core/numeric.py | |
parent | 04ac2a13b302a7af6fe2a5ca67e09a0e09a0f8e7 (diff) | |
download | numpy-021163b5e2293286b26d22bdae51305da634e74d.tar.gz |
MAINT: Clean up, mostly unused imports.
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index 72c6089b8..f1d7d48f1 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -4,10 +4,9 @@ import operator import sys import warnings import numbers -import contextlib import numpy as np -from numpy.compat import pickle, basestring +from numpy.compat import basestring from . import multiarray from .multiarray import ( _fastCopyAndTranspose as fastCopyAndTranspose, ALLOW_THREADS, |