diff options
-rw-r--r-- | src/py_value.cc | 4 | ||||
-rw-r--r-- | src/system.hh.in | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/py_value.cc b/src/py_value.cc index e94e74c1..ee039519 100644 --- a/src/py_value.cc +++ b/src/py_value.cc @@ -327,6 +327,10 @@ void export_value() .def("basetype", py_base_type) ; + class_< value_t::sequence_t > ("ValueSequence") + .def(vector_indexing_suite< value_t::sequence_t >()); + ; + scope().attr("NULL_VALUE") = NULL_VALUE; scope().attr("string_value") = &string_value; scope().attr("mask_value") = &mask_value; diff --git a/src/system.hh.in b/src/system.hh.in index abb823dc..341ce129 100644 --- a/src/system.hh.in +++ b/src/system.hh.in @@ -249,6 +249,7 @@ void serialize(Archive& ar, istream_pos_type& pos, const unsigned int) #include <unicodeobject.h> #include <boost/python/module_init.hpp> +#include <boost/python/suite/indexing/vector_indexing_suite.hpp> #endif // HAVE_BOOST_PYTHON |