Commit ced9f6f4 authored by Davis King's avatar Davis King

Make the global optimizer work in python3

parent affaead6
...@@ -49,7 +49,10 @@ boost::python::list mat_to_list ( ...@@ -49,7 +49,10 @@ boost::python::list mat_to_list (
size_t num_function_arguments(object f) size_t num_function_arguments(object f)
{ {
return boost::python::extract<std::size_t>(f.attr("func_code").attr("co_argcount")); if (hasattr(f,"func_code"))
return boost::python::extract<std::size_t>(f.attr("func_code").attr("co_argcount"));
else
return boost::python::extract<std::size_t>(f.attr("__code__").attr("co_argcount"));
} }
double call_func(object f, const matrix<double,0,1>& args) double call_func(object f, const matrix<double,0,1>& args)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment