diff options
author | Pauli Virtanen <pav@iki.fi> | 2009-12-06 12:07:06 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2009-12-06 12:07:06 +0000 |
commit | 026e0d2910ac89220ee7554debbf5fdaec5e621f (patch) | |
tree | cefa2d7c88195c949565328cc34b03ea97f90814 /numpy/core/numeric.py | |
parent | bbdeda175356c0d3d03b25db90149caa097dcb11 (diff) | |
download | numpy-026e0d2910ac89220ee7554debbf5fdaec5e621f.tar.gz |
3K: core: work around some cyclic imports
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index be10d5005..dd3ee1de5 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -1728,7 +1728,7 @@ def base_repr (number, base=2, padding=0): from cPickle import load, loads _cload = load -_file = file +_file = open def load(file): """ |