| 15 | #include <utility> |
| 16 | |
| 17 | double my_func(int x, float y, double z) { |
| 18 | py::print("my_func(x:int={}, y:float={:.0f}, z:float={:.0f})"_s.format(x, y, z)); |
| 19 | return (float) x * y * z; |
| 20 | } |
| 21 | |
| 22 | TEST_SUBMODULE(numpy_vectorize, m) { |
| 23 | try { |
no test coverage detected