summaryrefslogtreecommitdiff
path: root/numpy/lib
diff options
context:
space:
mode:
authorRoman Yurchak <rth.yurchak@pm.me>2018-12-01 19:03:55 +0100
committerCharles Harris <charlesr.harris@gmail.com>2018-12-01 10:03:55 -0800
commit0ee245bc6df60b911fafe81a743ec2a68a063c20 (patch)
tree4b32a0091c206d64ceda3f51ea134661dcaff513 /numpy/lib
parent69addfdfeee4226f723bb1f8d6f583221725319a (diff)
downloadnumpy-0ee245bc6df60b911fafe81a743ec2a68a063c20.tar.gz
MAINT: Use list and dict comprehension when possible (#12445)
* Use list comprehension * More list comprehension migration * Revert key copying in dict * A few more fixes * More reverts * Use dict comprehension * Fix dict comprehension * Address review comments * More review comments * Fix for empty unpacking of zip(* * Revert zip(* unpacking altogether * Fix dict copying * More simplifications
Diffstat (limited to 'numpy/lib')
-rw-r--r--numpy/lib/type_check.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/numpy/lib/type_check.py b/numpy/lib/type_check.py
index 1073613c9..90b1e9a6e 100644
--- a/numpy/lib/type_check.py
+++ b/numpy/lib/type_check.py
@@ -75,10 +75,7 @@ def mintypecode(typechars, typeset='GDFgdf', default='d'):
return default
if 'F' in intersection and 'd' in intersection:
return 'D'
- l = []
- for t in intersection:
- i = _typecodes_by_elsize.index(t)
- l.append((i, t))
+ l = [(_typecodes_by_elsize.index(t), t) for t in intersection]
l.sort()
return l[0][1]