summaryrefslogtreecommitdiff
path: root/src/py_xact.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/py_xact.cc')
-rw-r--r--src/py_xact.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/py_xact.cc b/src/py_xact.cc
index a0aa24d6..9a1017ba 100644
--- a/src/py_xact.cc
+++ b/src/py_xact.cc
@@ -38,6 +38,7 @@
namespace ledger {
+using namespace python;
using namespace boost::python;
namespace {
@@ -104,9 +105,9 @@ void export_xact()
.def("finalize", &xact_base_t::finalize)
- .def("__iter__", python::range<return_internal_reference<> >
+ .def("__iter__", boost::python::range<return_internal_reference<> >
(&xact_t::posts_begin, &xact_t::posts_end))
- .def("posts", python::range<return_internal_reference<> >
+ .def("posts", boost::python::range<return_internal_reference<> >
(&xact_t::posts_begin, &xact_t::posts_end))
.def("valid", &xact_base_t::valid)