| 30 | // once the public interface for to_python is settled on. |
| 31 | template <class T> |
| 32 | PyObject* convert_result(T const& x) |
| 33 | { |
| 34 | return converter::arg_to_python<T>(x).release(); |
| 35 | } |
| 36 | |
| 37 | // Operator implementation template declarations. The nested apply |
| 38 | // declaration here keeps MSVC6 happy. |