summaryrefslogtreecommitdiff
path: root/src/py_account.cc
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2023-04-12 20:33:40 +0200
committerAlexis Hildebrandt <afh@surryhill.net>2023-04-12 21:53:11 +0200
commit9244a27f9548a1d39fb01348fde66ff81f5150a4 (patch)
tree0f9d06a762a9a9939e1f37be60cf2b5e47da7983 /src/py_account.cc
parent5f78556078d2e61d5c0ef44e36d58f3864cd84d1 (diff)
downloadfork-ledger-9244a27f9548a1d39fb01348fde66ff81f5150a4.tar.gz
fork-ledger-9244a27f9548a1d39fb01348fde66ff81f5150a4.tar.bz2
fork-ledger-9244a27f9548a1d39fb01348fde66ff81f5150a4.zip
Refactor python related types into ledger::python namespace
Diffstat (limited to 'src/py_account.cc')
-rw-r--r--src/py_account.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/py_account.cc b/src/py_account.cc
index 67218c8b..2e1fd35b 100644
--- a/src/py_account.cc
+++ b/src/py_account.cc
@@ -40,6 +40,7 @@
namespace ledger {
using namespace flags;
+using namespace python;
using namespace boost::python;
namespace {
@@ -232,11 +233,11 @@ void export_account()
.def("__len__", accounts_len)
.def("__getitem__", accounts_getitem, return_internal_reference<>())
- .def("__iter__", python::range<return_internal_reference<> >
+ .def("__iter__", boost::python::range<return_internal_reference<> >
(&account_t::accounts_begin, &account_t::accounts_end))
- .def("accounts", python::range<return_internal_reference<> >
+ .def("accounts", boost::python::range<return_internal_reference<> >
(&account_t::accounts_begin, &account_t::accounts_end))
- .def("posts", python::range<return_internal_reference<> >
+ .def("posts", boost::python::range<return_internal_reference<> >
(&account_t::posts_begin, &account_t::posts_end))
.def("has_xdata", &account_t::has_xdata)