diff options
author | Pauli Virtanen <pav@iki.fi> | 2010-02-21 02:50:34 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2010-02-21 02:50:34 +0000 |
commit | a8bcb84ba972a11fe49f28945abc986192ae73dc (patch) | |
tree | 61c470b0daf126b69bfa2310eaac360897b91eb7 /numpy/numarray/functions.py | |
parent | 15b39a5b04458c490dc2b46666ba4ee6d816d082 (diff) | |
download | numpy-a8bcb84ba972a11fe49f28945abc986192ae73dc.tar.gz |
3K: ENH: make numpy.numarray to import
Diffstat (limited to 'numpy/numarray/functions.py')
-rw-r--r-- | numpy/numarray/functions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/numarray/functions.py b/numpy/numarray/functions.py index 6a0fd2958..1c2141c98 100644 --- a/numpy/numarray/functions.py +++ b/numpy/numarray/functions.py @@ -54,6 +54,9 @@ import numpy as np from numerictypes import typefrom +if sys.version_info[0] >= 3: + import copyreg as copy_reg + isBigEndian = sys.byteorder != 'little' value = tcode = 'f' tname = 'Float32' |