| 369 | |
| 370 | template <typename U> |
| 371 | object api::object_operators<U>::operator()(detail::args_proxy const &args) const |
| 372 | { |
| 373 | U const& self = *static_cast<U const*>(this); |
| 374 | PyObject *result = PyObject_Call(get_managed_object(self, boost::python::tag), |
| 375 | args.operator object().ptr(), |
| 376 | 0); |
| 377 | return object(boost::python::detail::new_reference(result)); |
| 378 | |
| 379 | } |
| 380 | |
| 381 | template <typename U> |
| 382 | object api::object_operators<U>::operator()(detail::args_proxy const &args, |
nothing calls this directly
no test coverage detected