summaryrefslogtreecommitdiff
path: root/src/py_xact.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-03-01 05:50:07 -0600
committerJohn Wiegley <johnw@newartisans.com>2012-03-01 05:50:07 -0600
commit9ec9cdf41e5176f7fcf06da5f75593d9ba3d4028 (patch)
treef9536d691ef7c5abea82349a0b58a5f5e3cf8e33 /src/py_xact.cc
parent944e580825f0d9ce060b6dcdffe8990b6c2cca20 (diff)
downloadfork-ledger-9ec9cdf41e5176f7fcf06da5f75593d9ba3d4028.tar.gz
fork-ledger-9ec9cdf41e5176f7fcf06da5f75593d9ba3d4028.tar.bz2
fork-ledger-9ec9cdf41e5176f7fcf06da5f75593d9ba3d4028.zip
Started writing Python unit tests
Diffstat (limited to 'src/py_xact.cc')
-rw-r--r--src/py_xact.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/py_xact.cc b/src/py_xact.cc
index 97d5df47..3d792c7b 100644
--- a/src/py_xact.cc
+++ b/src/py_xact.cc
@@ -76,6 +76,12 @@ namespace {
return **elem;
}
+ string py_xact_to_string(xact_t&)
+ {
+ // jww (2012-03-01): TODO
+ return empty_string;
+ }
+
} // unnamed namespace
using namespace boost::python;
@@ -110,6 +116,8 @@ void export_xact()
.def("id", &xact_t::id)
.def("seq", &xact_t::seq)
+ .def("__str__", py_xact_to_string)
+
.add_property("code",
make_getter(&xact_t::code),
make_setter(&xact_t::code))