diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-24 12:41:52 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-24 12:41:52 -0400 |
commit | 9f9381db64ee91d274fce78b0f08c96abf816fcc (patch) | |
tree | 169215126179f003e950124d5c45feaa341e765a /python/pyinterp.cc | |
parent | ba1f1fe70ec374422b441fba42c6f314d273f727 (diff) | |
download | fork-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.cc | 4 |
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(); |