()
| 61 | |
| 62 | |
| 63 | def test_same(): |
| 64 | x = np.arange(10) |
| 65 | y = np.arange(10) |
| 66 | bx, by = broadcast_arrays(x, y) |
| 67 | assert_array_equal(x, bx) |
| 68 | assert_array_equal(y, by) |
| 69 | |
| 70 | def test_broadcast_kwargs(): |
| 71 | # ensure that a TypeError is appropriately raised when |
nothing calls this directly
no test coverage detected
searching dependent graphs…