(a)
| 133 | return extobj |
| 134 | |
| 135 | def _makearray(a): |
| 136 | new = asarray(a) |
| 137 | wrap = getattr(a, "__array_prepare__", new.__array_wrap__) |
| 138 | return new, wrap |
| 139 | |
| 140 | def isComplexType(t): |
| 141 | return issubclass(t, complexfloating) |
no test coverage detected