| 168 | } |
| 169 | |
| 170 | BOOST_PYTHON_DECL object getslice(object const& target, handle<> const& begin, handle<> const& end) |
| 171 | { |
| 172 | return object( |
| 173 | detail::new_reference( |
| 174 | apply_slice(target.ptr(), begin.get(), end.get()))); |
| 175 | } |
| 176 | |
| 177 | BOOST_PYTHON_DECL void setslice(object const& target, handle<> const& begin, handle<> const& end, object const& value) |
| 178 | { |
nothing calls this directly
no test coverage detected