diff options
author | Matti Picus <matti.picus@gmail.com> | 2018-08-08 15:39:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 15:39:20 -0700 |
commit | b13ae038c6aa34c813f6ea31dcfda67070108fee (patch) | |
tree | 2d849ddf36d02986d6d66598e76ee829da5d1e61 /numpy | |
parent | 64c3de80e900c1295ae95c4cc855d94809b45938 (diff) | |
parent | 41d89b7f761b2b2246d896b1e709f1fb3df28116 (diff) | |
download | numpy-b13ae038c6aa34c813f6ea31dcfda67070108fee.tar.gz |
Merge pull request #11692 from charris/remove-duplicate-code
MAINT: Remove duplicate code.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/linalg/linalg.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/linalg/linalg.py b/numpy/linalg/linalg.py index 3bf26d4fc..5f04620ac 100644 --- a/numpy/linalg/linalg.py +++ b/numpy/linalg/linalg.py @@ -133,11 +133,6 @@ def _linalgRealType(t): """Cast the type t to either double or cdouble.""" return double -_complex_types_map = {single : csingle, - double : cdouble, - csingle : csingle, - cdouble : cdouble} - def _commonType(*arrays): # in lite version, use higher precision (always double or cdouble) result_type = single |