From 0e740b5f42a4c29639984fb85df0fca5d0e1f7dc Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Tue, 23 Jan 2018 03:58:25 +0000 Subject: journal: Expose register_account to Python --- src/py_journal.cc | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src') diff --git a/src/py_journal.cc b/src/py_journal.cc index fbc6dd2d..51ff20c2 100644 --- a/src/py_journal.cc +++ b/src/py_journal.cc @@ -135,6 +135,11 @@ namespace { return journal.find_account(name, auto_create); } + account_t * py_register_account(journal_t& journal, const string& name, post_t* post) + { + return journal.register_account(name, post, journal.master); + } + #if 0 std::size_t py_read(journal_t& journal, const string& pathname) { @@ -286,6 +291,10 @@ void export_journal() return_internal_reference<1, with_custodian_and_ward_postcall<1, 0> >()) + .def("register_account", py_register_account, + return_internal_reference<1, + with_custodian_and_ward_postcall<1, 0> >()) + .def("expand_aliases", &journal_t::expand_aliases, return_internal_reference<1, with_custodian_and_ward_postcall<1, 0> >()) -- cgit v1.2.3