()
| 4701 | assert type(np.add.outer([1, 2], arr)) is cls |
| 4702 | |
| 4703 | def test_outer_exceeds_maxdims(): |
| 4704 | deep = np.ones((1,) * 17) |
| 4705 | with assert_raises(ValueError): |
| 4706 | np.add.outer(deep, deep) |
| 4707 | |
| 4708 | def test_bad_legacy_ufunc_silent_errors(): |
| 4709 | # legacy ufuncs can't report errors and NumPy can't check if the GIL |
nothing calls this directly
no test coverage detected