summaryrefslogtreecommitdiff
path: root/python.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-08-29 23:32:29 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-08-29 23:32:29 -0400
commit63367e3aac062a7b55a3ba5c36a6c7fffbb6e2cc (patch)
tree6af161c7d0a7ca78a26f8b1f1f57426acddf9be9 /python.cc
parent2d62f7b633bdaa39c650bb67425514cf1e66a4dd (diff)
downloadfork-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.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/python.cc b/python.cc
index 5ed9be31..d469c2f3 100644
--- a/python.cc
+++ b/python.cc
@@ -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();
}