diff options
Diffstat (limited to 'src/py_value.cc')
-rw-r--r-- | src/py_value.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/py_value.cc b/src/py_value.cc index 46fa94c3..dabda427 100644 --- a/src/py_value.cc +++ b/src/py_value.cc @@ -352,9 +352,13 @@ void export_value() .def("basetype", py_base_type) ; +#if 0 + // jww (2010-06-10): This is not working since I switched sequence_t to + // ptr_deque<value_t>. class_< value_t::sequence_t > ("ValueSequence") - .def(vector_indexing_suite< value_t::sequence_t >()); + .def(vector_indexing_suite< value_t::sequence_t, true >()); ; +#endif scope().attr("NULL_VALUE") = NULL_VALUE; scope().attr("string_value") = &string_value; |