diff options
author | John Wiegley <johnw@newartisans.com> | 2004-08-29 23:32:29 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-08-29 23:32:29 -0400 |
commit | 63367e3aac062a7b55a3ba5c36a6c7fffbb6e2cc (patch) | |
tree | 6af161c7d0a7ca78a26f8b1f1f57426acddf9be9 /python.cc | |
parent | 2d62f7b633bdaa39c650bb67425514cf1e66a4dd (diff) | |
download | fork-ledger-63367e3aac062a7b55a3ba5c36a6c7fffbb6e2cc.tar.gz fork-ledger-63367e3aac062a7b55a3ba5c36a6c7fffbb6e2cc.tar.bz2 fork-ledger-63367e3aac062a7b55a3ba5c36a6c7fffbb6e2cc.zip |
the amount/balance/value logic is now a library, completely separate from ledger
Diffstat (limited to 'python.cc')
-rw-r--r-- | python.cc | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -5,12 +5,6 @@ using namespace boost::python; #include "ledger.h" #include "acconf.h" -static struct cleanup_ledger_t { - ~cleanup_ledger_t() { - ledger::shutdown(); - } -} _cleanup_ledger; - void export_amount(); void export_balance(); void export_value(); @@ -37,5 +31,4 @@ BOOST_PYTHON_MODULE(ledger) { export_gnucash(); #endif export_option(); - ledger::initialize(); } |