| 236 | // ---------------------------------------------------------------------------------------- |
| 237 | |
| 238 | function_spec py_function_spec1 ( |
| 239 | py::list a, |
| 240 | py::list b |
| 241 | ) |
| 242 | { |
| 243 | return function_spec(list_to_mat(a), list_to_mat(b)); |
| 244 | } |
| 245 | |
| 246 | function_spec py_function_spec2 ( |
| 247 | py::list a, |
nothing calls this directly
no test coverage detected