(*args)
| 898 | @unittest.skipUnless(HAVE_NUMPY, "requires build with numpy-support") |
| 899 | def test_fill_with_numpy_array_0(self): |
| 900 | def ar(*args): |
| 901 | return numpy.array(args, dtype=float) |
| 902 | a = histogram(integer(0, 3, uoflow=False)) |
| 903 | a(ar(-1, 0, 1, 2, 1)) |
| 904 | a((4, -1, 0, 1, 2)) |
nothing calls this directly
no outgoing calls
no test coverage detected