()
| 53 | |
| 54 | |
| 55 | def test_same(): |
| 56 | x = np.arange(10) |
| 57 | y = np.arange(10) |
| 58 | bx, by = broadcast_arrays(x, y) |
| 59 | assert_array_equal(x, bx) |
| 60 | assert_array_equal(y, by) |
| 61 | |
| 62 | def test_broadcast_kwargs(): |
| 63 | # ensure that a TypeError is appropriately raised when |
nothing calls this directly
no test coverage detected