| 10 | |
| 11 | namespace { |
| 12 | argument_vector to_argument_vector(const std::vector<py::handle> &v) { |
| 13 | argument_vector result; |
| 14 | result.reserve(v.size()); |
| 15 | for (const auto x : v) { |
| 16 | result.push_back(x); |
| 17 | } |
| 18 | return result; |
| 19 | } |
| 20 | |
| 21 | std::vector<std::vector<py::handle>> get_sample_argument_vector_contents() { |
| 22 | return std::vector<std::vector<py::handle>>{ |
no test coverage detected