| 22 | using namespace boost::python; |
| 23 | using boost::python::extract; |
| 24 | static void free_leftv(leftv args) |
| 25 | { |
| 26 | args->CleanUp(); |
| 27 | omFreeBin(args, sleftv_bin); |
| 28 | } |
| 29 | |
| 30 | #if BOOST_VERSION < 106500 /* 1.65 */ |
| 31 | typedef typename boost::python::numeric::array NumpyArrayType; |
no test coverage detected