You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As I noted in PR #412, the exposed std::vector<Eigen::Matrix> types cannot be sliced. I think this is due to the definition of __getitem__ in the visitor overload_base_get_item_for_std_vectorhere. It seems it doesn't handle the case where the underlying "index" PyObject is actually a Python slice (boost::python::slice) object.
The text was updated successfully, but these errors were encountered:
As I noted in PR #412, the exposed
std::vector<Eigen::Matrix>
types cannot be sliced. I think this is due to the definition of__getitem__
in the visitoroverload_base_get_item_for_std_vector
here. It seems it doesn't handle the case where the underlying "index" PyObject is actually a Python slice (boost::python::slice
) object.The text was updated successfully, but these errors were encountered: