summaryrefslogtreecommitdiff
path: root/python/pyinterp.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-24 12:41:52 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-24 12:41:52 -0400
commit9f9381db64ee91d274fce78b0f08c96abf816fcc (patch)
tree169215126179f003e950124d5c45feaa341e765a /python/pyinterp.cc
parentba1f1fe70ec374422b441fba42c6f314d273f727 (diff)
downloadfork-ledger-9f9381db64ee91d274fce78b0f08c96abf816fcc.tar.gz
fork-ledger-9f9381db64ee91d274fce78b0f08c96abf816fcc.tar.bz2
fork-ledger-9f9381db64ee91d274fce78b0f08c96abf816fcc.zip
Restored the py_amount and py_balance mappings
Diffstat (limited to 'python/pyinterp.cc')
-rw-r--r--python/pyinterp.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/pyinterp.cc b/python/pyinterp.cc
index cd877f80..9782f3a0 100644
--- a/python/pyinterp.cc
+++ b/python/pyinterp.cc
@@ -37,6 +37,8 @@ using namespace python;
shared_ptr<python_interpreter_t> python_session;
+void export_amount();
+void export_balance();
void export_chain();
void export_commodity();
void export_xact();
@@ -57,6 +59,8 @@ void export_post();
void initialize_for_python()
{
+ export_amount();
+ export_balance();
export_chain();
export_commodity();
export_xact();