| 62 | |
| 63 | template <typename Axis> |
| 64 | struct axis_interval_view_to_python { |
| 65 | static PyObject* convert(const bha::interval_view<Axis>& i) { |
| 66 | return bp::incref(bp::make_tuple(i.lower(), i.upper()).ptr()); |
| 67 | } |
| 68 | }; |
| 69 | |
| 70 | bp::object variable_init(bp::tuple args, bp::dict kwargs) { |
| 71 | bp::object self = args[0]; |
nothing calls this directly
no outgoing calls
no test coverage detected