diff options
-rw-r--r-- | numpy/core/_methods.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/core/_methods.py b/numpy/core/_methods.py index 8a90731e9..6785683a3 100644 --- a/numpy/core/_methods.py +++ b/numpy/core/_methods.py @@ -31,10 +31,6 @@ if nt.dtype(nt.longdouble) != nt.dtype(nt.double): _complex_to_float.update({ nt.dtype(nt.clongdouble) : nt.dtype(nt.longdouble), }) -# Add reverse-endian types -_complex_to_float.update({ - k.newbyteorder() : v.newbyteorder() for k, v in _complex_to_float.items() -}) # avoid keyword arguments to speed up parsing, saves about 15%-20% for very # small reductions |