diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-11 04:46:38 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-11 04:46:38 -0500 |
commit | f0f1b0cdfa3a0a73695eda52b25de71bd40adc5a (patch) | |
tree | f0acb080410a32c215c2c1938811cc14d512b580 /src/py_value.cc | |
parent | f1b495abfea31f4777b74715631dd45f9f4d8ed1 (diff) | |
download | fork-ledger-f0f1b0cdfa3a0a73695eda52b25de71bd40adc5a.tar.gz fork-ledger-f0f1b0cdfa3a0a73695eda52b25de71bd40adc5a.tar.bz2 fork-ledger-f0f1b0cdfa3a0a73695eda52b25de71bd40adc5a.zip |
Value.to_sequence returns a valid Python sequence
Diffstat (limited to 'src/py_value.cc')
-rw-r--r-- | src/py_value.cc | 4 |
1 files changed, 4 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; |