(a, b)
| 848 | return a |
| 849 | |
| 850 | def _lcm(a, b): |
| 851 | return a // _gcd(a, b) * b |
| 852 | |
| 853 | def array_ufunc_errmsg_formatter(dummy, ufunc, method, *inputs, **kwargs): |
| 854 | """ Format the error message for when __array_ufunc__ gives up. """ |
no test coverage detected