(a)
| 161 | |
| 162 | |
| 163 | def _makearray(a): |
| 164 | new = asarray(a) |
| 165 | wrap = getattr(a, "__array_wrap__", new.__array_wrap__) |
| 166 | return new, wrap |
| 167 | |
| 168 | def isComplexType(t): |
| 169 | return issubclass(t, complexfloating) |
no test coverage detected
searching dependent graphs…