()
| 5107 | assert type(np.add.outer([1, 2], arr)) is cls |
| 5108 | |
| 5109 | def test_outer_exceeds_maxdims(): |
| 5110 | deep = np.ones((1,) * 33) |
| 5111 | with assert_raises(ValueError): |
| 5112 | np.add.outer(deep, deep) |
| 5113 | |
| 5114 | def test_bad_legacy_ufunc_silent_errors(): |
| 5115 | # legacy ufuncs can't report errors and NumPy can't check if the GIL |
nothing calls this directly
no test coverage detected
searching dependent graphs…